2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-15 18:12:54 +00:00

Bug 1818473 - Ignore case when searching through logins

This commit is contained in:
gitstart 2023-03-01 10:26:36 +00:00 committed by mergify[bot]
parent f8476e24bc
commit 767f92ebb9

View File

@ -171,8 +171,10 @@ private fun filterItems(
filteredItems = sortingStrategy(state.loginList).filter {
it.origin.contains(
searchedForText,
true,
) || it.username.contains(
searchedForText,
true,
)
},
)