mirror of
https://github.com/ente-io/ente.git
synced 2025-08-08 15:30:40 +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.
|
//gallery.
|
||||||
final Set<int> matchedUploadedIDs;
|
final Set<int> matchedUploadedIDs;
|
||||||
|
|
||||||
HierarchicalSearchFilter({this.matchedUploadedIDs = const <int>{}});
|
HierarchicalSearchFilter({matchedUploadedIDs})
|
||||||
|
: matchedUploadedIDs = matchedUploadedIDs ?? {};
|
||||||
|
|
||||||
String name();
|
String name();
|
||||||
IconData? icon();
|
IconData? icon();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user