This commit is contained in:
bingus_violet 2024-07-07 23:18:43 -05:00
parent d762572b87
commit 3f032510f0

View file

@ -39,12 +39,13 @@ module.exports = {
} }
if (config.pinned) { if (config.pinned) {
posts.unshift(config)
} else {
posts.push(config) posts.push(config)
} else {
posts.unshift(config)
} }
} }
} }
posts.reverse()
return posts return posts
} }