enhance(server): tweak notes/featured api

This commit is contained in:
syuilo 2023-03-07 08:41:10 +09:00
parent 31f9ea31b9
commit 2b884ba338
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
let notes = await query
.orderBy('note.score', 'DESC')
.take(50)
.take(100)
.getMany();
notes.sort((a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime());