diff --git a/lib/db/photo_db.dart b/lib/db/photo_db.dart index 3b37fe7e1765b78746dc9da154b1bb1982330026..9d99d1e23f0c248b12a3f45be0ffab18557b27b5 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); }