mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-05-19 21:17:05 +02:00
fix: search with package name (#1344)
This commit is contained in:
parent
657ba11e7e
commit
4085c10bfc
@ -224,7 +224,8 @@ class AppSelectorViewModel extends BaseViewModel {
|
|||||||
(app) =>
|
(app) =>
|
||||||
query.isEmpty ||
|
query.isEmpty ||
|
||||||
query.length < 2 ||
|
query.length < 2 ||
|
||||||
app.appName.toLowerCase().contains(query.toLowerCase()),
|
app.appName.toLowerCase().contains(query.toLowerCase()) ||
|
||||||
|
app.packageName.toLowerCase().contains(query.toLowerCase()),
|
||||||
)
|
)
|
||||||
.toList();
|
.toList();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user