From 184dcbabefa357b12c2cce3e6c4ab87a975a33c6 Mon Sep 17 00:00:00 2001 From: Taqib Ibrahim Date: Wed, 23 Jul 2025 15:45:07 +0100 Subject: [PATCH] Update apps/web/src/app/rss.xml/route.ts Co-authored-by: Dominik K. --- apps/web/src/app/rss.xml/route.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/apps/web/src/app/rss.xml/route.ts b/apps/web/src/app/rss.xml/route.ts index 1567d4a7..8602a03f 100644 --- a/apps/web/src/app/rss.xml/route.ts +++ b/apps/web/src/app/rss.xml/route.ts @@ -18,17 +18,17 @@ export async function GET() { }`, }); - posts.forEach((article) => { + for (const post of posts) { feed.addItem({ - title: article.title, - id: `${SITE_INFO.url}/blog/${article.slug}`, - link: `${SITE_INFO.url}/blog/${article.slug}`, - description: article.description, - author: article.authors.map((author) => ({ - name: author.name ?? 'OpenCut', + title: post.title, + id: `${SITE_INFO.url}/blog/${post.slug}`, + link: `${SITE_INFO.url}/blog/${post.slug}`, + description: post.description, + author: post.authors.map((author) => ({ + name: post.name ?? 'OpenCut', })), - date: new Date(article.publishedAt), - image: article.coverImage, + date: new Date(post.publishedAt), + image: post.coverImage, }); });