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
1 changed files with 2 additions and 2 deletions

View File

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