feat: 8502, don't change topics sitemaps on every reply

sort by topic creation in ascending order
v1.18.x
Barış Soner Uşaklı 5 years ago
parent 0a9ea91fea
commit e045436c07

@ -105,7 +105,7 @@ sitemap.getTopicPage = async function (page) {
}
const topicUrls = [];
let tids = await db.getSortedSetRevRange('topics:recent', min, max);
let tids = await db.getSortedSetRange('topics:tid', min, max);
tids = await privileges.topics.filterTids('topics:read', tids, 0);
const topicData = await topics.getTopicsFields(tids, ['tid', 'title', 'slug', 'lastposttime']);

Loading…
Cancel
Save