mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-02 12:05:48 +02:00
Fix bug
This commit is contained in:
@@ -65,7 +65,7 @@ export default define(meta, async (ps) => {
|
||||
}
|
||||
}
|
||||
|
||||
const logs = await query.take(ps.limit).getMany();
|
||||
const logs = await query.orderBy('log.createdAt', 'DESC').take(ps.limit).getMany();
|
||||
|
||||
return logs;
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user