reverse results on each page to have most recent first

This commit is contained in:
towards-a-new-leftypol 2023-09-21 01:49:17 -04:00
parent 09c3197fb8
commit 7be80cb408
1 changed files with 1 additions and 1 deletions

View File

@ -829,7 +829,7 @@ function loadKnownSpamPosts(params) {
console.log("HELLO WORLD 1");
var url = GlobalVars.settings.postgrest_url + '/known_spam_post?select=*,known_spam_post_attachment(*,phash::text)'
var url = GlobalVars.settings.postgrest_url + '/known_spam_post?select=*,known_spam_post_attachment(*,phash::text)&order=time_stamp.desc'
const pageNum = Number(params.get(replaceAll(pageName, ' ', '_')) || 0);