mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-03 13:45:56 +02:00
Remove self-assignment (#3476)
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user