This commit is contained in:
syuilo 2018-12-24 05:31:20 +09:00
parent af5839bb59
commit b6a028a8ed
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -52,9 +52,9 @@ export default define(meta, (ps, me) => new Promise(async (res, rej) => {
_sort = { _sort = {
length: -1 length: -1
}; };
} else if (ps.sort == '+size') { } else if (ps.sort == '-size') {
_sort = { _sort = {
length: -1 length: 1
}; };
} }
} else { } else {