fix(mobile): use custom filter to fetch asset path entities (#17344)

Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
This commit is contained in:
shenlong 2025-04-07 20:09:24 +05:30 committed by GitHub
parent a724f147fe
commit 042da669d1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 34 additions and 10 deletions

View file

@ -84,6 +84,11 @@ enum AppSettingsEnum<T> {
enableHapticFeedback<bool>(StoreKey.enableHapticFeedback, null, true),
syncAlbums<bool>(StoreKey.syncAlbums, null, false),
autoEndpointSwitching<bool>(StoreKey.autoEndpointSwitching, null, false),
photoManagerCustomFilter<bool>(
StoreKey.photoManagerCustomFilter,
null,
false,
),
;
const AppSettingsEnum(this.storeKey, this.hiveKey, this.defaultValue);