summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/aggregation
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/api/endpoints/aggregation')
-rw-r--r--src/server/api/endpoints/aggregation/hashtags.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/api/endpoints/aggregation/hashtags.ts b/src/server/api/endpoints/aggregation/hashtags.ts
index f8fc7162f5..45d709f772 100644
--- a/src/server/api/endpoints/aggregation/hashtags.ts
+++ b/src/server/api/endpoints/aggregation/hashtags.ts
@@ -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);