From 86b36d5a6a2d28ee80064250df714ccdca533b00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Math=C3=A9o=20GUILBERT?= Date: Tue, 26 May 2026 11:43:33 +0200 Subject: [PATCH] fixing rss properties --- app/rss.xml/route.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/rss.xml/route.ts b/app/rss.xml/route.ts index fc328bf..9392714 100644 --- a/app/rss.xml/route.ts +++ b/app/rss.xml/route.ts @@ -20,12 +20,13 @@ export async function GET() { articles.forEach((article) => { feed.item({ title: article.title, - description: article.description, + description: article.description || '', url: `${siteUrl}/fr/blog/${article.slug}`, guid: article.slug, date: article.date, custom_elements: [ - { 'meta_description': article.description } + { 'meta_description': article.description || '' }, + { 'article_summary': article.summary || '' } ], }); });