From 83e04ff9a6f16fc8b4b9eb4ff60eaf4ffc59dfbf Mon Sep 17 00:00:00 2001 From: Cassidy Williams <1454517+cassidoo@users.noreply.github.com> Date: Sun, 15 Dec 2024 14:44:05 -0600 Subject: [PATCH] Fix RSS feed rendering --- src/pages/rss.xml.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/rss.xml.js b/src/pages/rss.xml.js index 9e2ba25..8fbefd2 100644 --- a/src/pages/rss.xml.js +++ b/src/pages/rss.xml.js @@ -21,7 +21,7 @@ export const GET = () => title: post.data.title, pubDate: post.data.added, description: post.data.description, - content: post.body, + content: post.rendered.html, customData: `${ post.data.updated ? post.data.updated : "" }`,