1
0
mirror of https://gitlab.com/timvisee/send.git synced 2024-09-21 00:21:32 +02:00

Make order of uploaded files in list consistent

This commit is contained in:
Peter deHaan 2017-07-28 23:43:57 -07:00
parent 83f9853112
commit a5b5628d88
No known key found for this signature in database
GPG Key ID: F0FC6C01C6305097

View File

@ -32,7 +32,11 @@ class Storage {
fs.push(JSON.parse(this.engine.getItem(k))); // parse or whatever else
}
}
return fs;
return fs.sort((file1, file2) => {
const creationDate1 = new Date(file1.creationDate);
const creationDate2 = new Date(file2.creationDate);
return creationDate1 - creationDate2;
});
}
get numFiles() {