0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-07 00:50:23 -05:00

fix(mobile): archive desc sorting (#7822)

desc sort
This commit is contained in:
Ghazi Tounsi 2024-03-11 03:15:34 +01:00 committed by GitHub
parent e5978981f3
commit 49d9051879
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,6 +17,6 @@ final archiveProvider = StreamProvider<RenderList>((ref) {
.filter() .filter()
.isArchivedEqualTo(true) .isArchivedEqualTo(true)
.isTrashedEqualTo(false) .isTrashedEqualTo(false)
.sortByFileCreatedAt(); .sortByFileCreatedAtDesc();
return renderListGenerator(query, ref); return renderListGenerator(query, ref);
}); });