Fix RSS feed rendering

This commit is contained in:
Cassidy Williams
2024-12-15 14:44:05 -06:00
parent cf5cc2bbf6
commit 83e04ff9a6

View File

@@ -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: `<updated>${
post.data.updated ? post.data.updated : ""
}</updated>`,