From 8066b5303988effcea24f04be822d94e61eef002 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Math=C3=A9o=20GUILBERT?= Date: Tue, 26 May 2026 11:52:44 +0200 Subject: [PATCH] fixing rss properties --- app/rss.xml/route.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/rss.xml/route.ts b/app/rss.xml/route.ts index 9392714..e637be0 100644 --- a/app/rss.xml/route.ts +++ b/app/rss.xml/route.ts @@ -25,8 +25,7 @@ export async function GET() { guid: article.slug, date: article.date, custom_elements: [ - { 'meta_description': article.description || '' }, - { 'article_summary': article.summary || '' } + { 'full_text': article.content || '' } ], }); });