Upload latest photos first

This commit is contained in:
Vishnu Mohandas 2020-06-03 23:23:50 +05:30
parent 9994715cc4
commit 8d48ca9d3a

View file

@ -128,6 +128,7 @@ class PhotoDB {
final results = await db.query(
table,
where: '$columnUploadedFileId = -1',
orderBy: '$columnCreateTimestamp DESC',
);
return _convertToPhotos(results);
}