From a82abe64f6298bcdf552d8e269d81251712a176b Mon Sep 17 00:00:00 2001 From: gor_down Date: Sat, 7 Dec 2024 00:52:45 -0300 Subject: [PATCH] fix --- src/router/indexRouter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/router/indexRouter.js b/src/router/indexRouter.js index 64f6d7e..864f7d4 100644 --- a/src/router/indexRouter.js +++ b/src/router/indexRouter.js @@ -76,7 +76,7 @@ router.post('/comment', (req, res) => { router.get('/update_log/rss', async (_req, res) => { const csvData = await readCsv(thisDirectory + '/public/dynamic/sync/updates.csv') const rss = makeRss('https://lyricaltokarev.com/update_log/rss', "Update Log") - csvData.reverse().forEach((u, i) => { + csvData.forEach((u, i) => { rss.item({ title: "Update #" + i, description: `${u.link && ``}${u.description}${u.link && ``}`,