From ef95bc1667543b1e51613abb1da60b1f86e0f132 Mon Sep 17 00:00:00 2001 From: "Satsuki Akiba (aider)" Date: Wed, 4 Jun 2025 15:28:15 +0900 Subject: [PATCH] fix: escape XML entities in podcast feed --- services/podcast.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/podcast.ts b/services/podcast.ts index c85adbe..2fd830d 100644 --- a/services/podcast.ts +++ b/services/podcast.ts @@ -33,7 +33,7 @@ export async function updatePodcastRSS() { itemsXml += ` <![CDATA[${ep.title}]]> - /g, "]]>").replace(/&/g, "&")}]]> + /g, "]]>").replace(/&/g, "&")}]]> ${channelAuthor} ${channelCategories} ${channelLanguage} @@ -104,7 +104,7 @@ export async function updatePodcastRSS() { ${channelTitle} ${channelLink} - ${channelDescription}]]> + ${lastBuildDate} ${itemsXml}