mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-07 13:38:13 -08:00
fix: Set defaults for nullable if they are not set yet.
This commit is contained in:
parent
a2684d1d0a
commit
1995ae70bb
1 changed files with 2 additions and 1 deletions
|
|
@ -79,7 +79,8 @@ class LibrarySearchNotifier extends StateNotifier<LibrarySearchModel> {
|
|||
filters: state.filters.copyWith(
|
||||
types: state.filters.types.replaceMap(filters.types, enabledOnly: true),
|
||||
genres: state.filters.genres.replaceMap(filters.genres, enabledOnly: true),
|
||||
recursive: filters.recursive,
|
||||
recursive: filters.recursive ?? true,
|
||||
favourites: filters.favourites ?? false,
|
||||
),
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue