1
0
mirror of https://github.com/immich-app/immich.git synced 2025-08-08 23:07:06 +02:00

fix(mobile): search page issues (#15804)

* fix: don't repeat search

* fix: show snackbar for no result

* fix: do not search on empty filter

* chore: syling
This commit is contained in:
Alex
2025-01-30 21:12:57 -06:00
committed by GitHub
parent 4fccc09fc1
commit 098bab7c9b
7 changed files with 159 additions and 14 deletions

View File

@ -101,7 +101,7 @@ class SearchService {
);
}
if (response == null) {
if (response == null || response.assets.items.isEmpty) {
return null;
}