properly hide hidden folders
This commit is contained in:
parent
c242f74f9b
commit
fcad1f6fa5
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ class GetDirectoriesAsynctask(val context: Context, val isPickVideo: Boolean, va
|
||||||
// make sure the path has uppercase letters wherever appropriate
|
// make sure the path has uppercase letters wherever appropriate
|
||||||
val groupPath = File(curMedia.first().path).parent
|
val groupPath = File(curMedia.first().path).parent
|
||||||
if (!File(groupPath).exists() || !shouldFolderBeVisible(groupPath, excludedPaths, includedPaths)) {
|
if (!File(groupPath).exists() || !shouldFolderBeVisible(groupPath, excludedPaths, includedPaths)) {
|
||||||
removePaths.add(groupPath)
|
removePaths.add(groupPath.toLowerCase())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue