Fix invalid feed characters #31

Merged
olaven merged 3 commits from fix-bad-feed-characters into main 2024-04-14 10:16:00 +00:00
1 changed files with 0 additions and 1 deletions
Showing only changes of commit c33264f601 - Show all commits

View File

@ -13,7 +13,6 @@ export const handler = async (_req: Request, ctx: FreshContext): Promise<Respons
const feed = rss.assembleFeed(series); const feed = rss.assembleFeed(series);
const xml = responseXML(feed, STATUS_CODE.OK); const xml = responseXML(feed, STATUS_CODE.OK);
console.log({ feed, xml });
return xml; return xml;
}; };