mirror of
https://github.com/ente-io/ente.git
synced 2025-08-08 07:28:26 +00:00
[mob][photos] Fix 'cannot modify an unmodifiable set' bug
This commit is contained in:
parent
d91a710f18
commit
b68fdf3d15
@ -13,7 +13,8 @@ abstract class HierarchicalSearchFilter {
|
||||
//gallery.
|
||||
final Set<int> matchedUploadedIDs;
|
||||
|
||||
HierarchicalSearchFilter({this.matchedUploadedIDs = const <int>{}});
|
||||
HierarchicalSearchFilter({matchedUploadedIDs})
|
||||
: matchedUploadedIDs = matchedUploadedIDs ?? {};
|
||||
|
||||
String name();
|
||||
IconData? icon();
|
||||
|
Loading…
x
Reference in New Issue
Block a user