mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-26 22:47:59 +01:00
make the data folder check incase sensitive
This commit is contained in:
parent
0fe7a49e4b
commit
394d7ccbbc
1 changed files with 1 additions and 1 deletions
|
@ -1126,7 +1126,7 @@ class MainActivity : SimpleActivity(), DirectoryOperationsListener {
|
||||||
|
|
||||||
if (!checkedPaths.contains(currentString)) {
|
if (!checkedPaths.contains(currentString)) {
|
||||||
val cnt = paths.count { it.startsWith(currentString) }
|
val cnt = paths.count { it.startsWith(currentString) }
|
||||||
if (cnt > 50 && currentString.startsWith("/Android/data")) {
|
if (cnt > 50 && currentString.startsWith("/Android/data", true)) {
|
||||||
oftenRepeatedPaths.add(currentString)
|
oftenRepeatedPaths.add(currentString)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue