mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-26 09:36:02 -07:00
返すタグの数を制限
This commit is contained in:
parent
f41a9ad88b
commit
9aac072e6c
1 changed files with 2 additions and 0 deletions
|
@ -60,5 +60,7 @@ export default () => new Promise(async (res, rej) => {
|
||||||
// タグを人気順に並べ替え
|
// タグを人気順に並べ替え
|
||||||
tags = tags.sort((a, b) => b.count - a.count);
|
tags = tags.sort((a, b) => b.count - a.count);
|
||||||
|
|
||||||
|
tags = tags.slice(0, 30);
|
||||||
|
|
||||||
res(tags);
|
res(tags);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue