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 && ``}`,