Show the oldest memories first

This commit is contained in:
Vishnu Mohandas 2020-07-21 13:40:44 +05:30
parent ee26784b60
commit 5a6d36a369

View file

@ -135,7 +135,7 @@ class FilesDB {
where:
'$columnCreationTime > ? AND $columnCreationTime < ? AND $columnIsDeleted = 0',
whereArgs: [startCreationTime, endCreationTime],
orderBy: '$columnCreationTime DESC',
orderBy: '$columnCreationTime ASC',
);
return _convertToFiles(results);
}