diff --git a/lib/db/photo_db.dart b/lib/db/photo_db.dart index 3b37fe7e1..9d99d1e23 100644 --- a/lib/db/photo_db.dart +++ b/lib/db/photo_db.dart @@ -128,6 +128,7 @@ class PhotoDB { final results = await db.query( table, where: '$columnUploadedFileId = -1', + orderBy: '$columnCreateTimestamp DESC', ); return _convertToPhotos(results); }