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