Skip to content

Commit

Permalink
fix: search with package name (ReVanced#1344)
Browse files Browse the repository at this point in the history
  • Loading branch information
Almostsagar committed Oct 9, 2023
1 parent 657ba11 commit 4085c10
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/ui/views/app_selector/app_selector_viewmodel.dart
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,8 @@ class AppSelectorViewModel extends BaseViewModel {
(app) =>
query.isEmpty ||
query.length < 2 ||
app.appName.toLowerCase().contains(query.toLowerCase()),
app.appName.toLowerCase().contains(query.toLowerCase()) ||
app.packageName.toLowerCase().contains(query.toLowerCase()),
)
.toList();
}
Expand Down

0 comments on commit 4085c10

Please sign in to comment.