Remove the 500-item limit from the top tags database queries.

This commit is contained in:
x
2026-01-24 19:22:53 +01:00
parent 65692d67a8
commit debb14142e

View File

@@ -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
;
`;