diff --git a/server/routes/admin.js b/server/routes/admin.js index 0abb99ef1..bcf5c7540 100644 --- a/server/routes/admin.js +++ b/server/routes/admin.js @@ -410,7 +410,7 @@ router.get('/admin/reports', handleErrorAsync(async (req, res) => { WHERE reports.id > ${cutoff} AND sus.username IS NOT NULL GROUP BY reports.id - ORDER BY min(reports.isHandled) ASC, reports.id DESC + ORDER BY min(reports.isHandled) ASC, min(reports.isAutomatic) ASC, reports.id ASC `)); }));