Skip to content

Commit 3d93b3b

Browse files
committed
reversed upload history order
1 parent 6378793 commit 3d93b3b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/services/upload_notifier.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class UploadNotifier extends ChangeNotifier {
2323
void itemUploadCompleted(UploadItem item, {bool error = false}) {
2424
_uploadList.remove(item);
2525
item.error = error;
26-
_uploadHistoryList.add(item);
26+
_uploadHistoryList.insert(0, item);
2727
notifyListeners();
2828
}
2929

0 commit comments

Comments
 (0)