Skip to content

Commit

Permalink
search: fixed dynamic album name filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
deckerst committed Jan 3, 2025
1 parent 9bdb317 commit 2d1fbbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/widgets/search/search_delegate.dart
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class CollectionSearchDelegate extends AvesSearchDelegate with FeedbackMixin, Va
source.getStoredAlbumDisplayName(context, album),
))
.where((filter) => containQuery(filter.displayName ?? filter.album)),
...dynamicAlbums.all,
...dynamicAlbums.all.where((filter) => containQuery(filter.name)),
]..sort();
return _buildFilterRow(
context: context,
Expand Down

0 comments on commit 2d1fbbd

Please sign in to comment.