From debb14142eade1f0929d0889e367589b3305eba9 Mon Sep 17 00:00:00 2001 From: x Date: Sat, 24 Jan 2026 19:22:53 +0100 Subject: [PATCH] Remove the 500-item limit from the top tags database queries. --- src/inc/routes/toptags.mjs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/inc/routes/toptags.mjs b/src/inc/routes/toptags.mjs index fb84eea..9139ae6 100644 --- a/src/inc/routes/toptags.mjs +++ b/src/inc/routes/toptags.mjs @@ -15,7 +15,6 @@ export default (router, tpl) => { WHERE t.id not in (${db.unsafe(nsfp)}) GROUP BY t.id, t.tag ORDER BY total_items DESC - LIMIT 500 ; `; @@ -25,7 +24,6 @@ export default (router, tpl) => { LEFT JOIN tags_assign ta ON t.id = ta.tag_id GROUP BY t.id, t.tag ORDER BY total_items DESC - LIMIT 500 ; `;