mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2025-04-04 21:51:10 +02:00
simplify the hidden folder check
This commit is contained in:
parent
f372d46b51
commit
f82b09470b
@ -88,10 +88,11 @@ fun Context.getParents(): ArrayList<String> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun isFolderVisible(path: String, noMediaFolders: ArrayList<String>): Boolean {
|
private fun isFolderVisible(path: String, noMediaFolders: ArrayList<String>): Boolean {
|
||||||
val parts = path.split("/")
|
return if (path.contains("/.")) {
|
||||||
return if (parts.any { it.startsWith(".") }) {
|
|
||||||
false
|
false
|
||||||
} else !noMediaFolders.any { path.startsWith(it) }
|
} else {
|
||||||
|
!noMediaFolders.any { path.startsWith(it) }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Context.getNoMediaFolders(): ArrayList<String> {
|
fun Context.getNoMediaFolders(): ArrayList<String> {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user