Use a contains search instead of startsWith (fixes #403)

This commit is contained in:
Julian Raufelder 2022-01-17 22:15:28 +01:00
parent 40d8ff7d17
commit da5ef4dbbe
No known key found for this signature in database
GPG Key ID: 17EE71F6634E381D

View File

@ -117,7 +117,7 @@ constructor(
if (sharedPreferencesHandler.useGlobSearch()) {
nodes?.filter { cloudNode -> PatternMatcher(filterText, PatternMatcher.PATTERN_SIMPLE_GLOB).match(cloudNode.name) }
} else {
nodes?.filter { cloudNode -> cloudNode.name.lowercase().startsWith(filterText.lowercase()) }
nodes?.filter { cloudNode -> cloudNode.name.contains(filterText, true) }
}
} else {
nodes