1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2024-12-28 06:31:58 +00:00

fix(mobile): keep empty album as selected target (#14778)

This commit is contained in:
Alex 2024-12-18 11:10:29 -06:00 committed by GitHub
parent 6a855f6331
commit b034cb1861
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,7 +14,6 @@ class AlbumMediaRepository implements IAlbumMediaRepository {
final List<AssetPathEntity> assetPathEntities = final List<AssetPathEntity> assetPathEntities =
await PhotoManager.getAssetPathList( await PhotoManager.getAssetPathList(
hasAll: true, hasAll: true,
filterOption: FilterOptionGroup(containsPathModified: true),
); );
return assetPathEntities.map(_toAlbum).toList(); return assetPathEntities.map(_toAlbum).toList();
} }