mirror of
https://github.com/awfixers-stuff/OwnDroid.git
synced 2026-03-23 11:05:59 +00:00
fix: use contains instead of contentEqual for managed configurations search
This commit is contained in:
@@ -1024,7 +1024,7 @@ fun ManagedConfigurationScreen(
|
|||||||
restrictions
|
restrictions
|
||||||
} else {
|
} else {
|
||||||
restrictions.filter {
|
restrictions.filter {
|
||||||
it.key.contentEquals(searchKeyword, true) ||
|
it.key.contains(searchKeyword, true) ||
|
||||||
it.title?.contains(searchKeyword, true) ?: true
|
it.title?.contains(searchKeyword, true) ?: true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user