server: index newest news posts first

This commit is contained in:
Bill Thiede 2025-01-29 17:10:26 -08:00
parent 0817a7a51b
commit 69f8e24689

View File

@ -5,4 +5,6 @@ SELECT
FROM
post AS p
INNER JOIN feed AS f ON p.site = f.slug -- necessary to weed out nzb posts
WHERE search_summary IS NULL LIMIT 100;
WHERE search_summary IS NULL
ORDER BY date DESC
LIMIT 100;