mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-25 14:51:31 -07:00
Remove self-assignment (#3476)
This commit is contained in:
parent
0f36f88a35
commit
865695c7a4
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ export default define(meta, (ps) => new Promise(async (res, rej) => {
|
|||
});
|
||||
|
||||
// タグを人気順に並べ替え
|
||||
tags = tags.sort((a, b) => b.count - a.count);
|
||||
tags.sort((a, b) => b.count - a.count);
|
||||
|
||||
tags = tags.slice(0, 30);
|
||||
|
||||
|
|
Loading…
Reference in a new issue