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 8db94b2710 - Show all commits

View File

@ -11,7 +11,6 @@ export const handler = async (_req: Request, ctx: FreshContext): Promise<Respons
return responseJSON({ message: "Series not found" }, STATUS_CODE.NotFound); return responseJSON({ message: "Series not found" }, STATUS_CODE.NotFound);
olaven commented 2024-04-14 10:13:54 +00:00 (Migrated from github.com)
Review
```suggestion ```
olaven commented 2024-04-14 10:13:59 +00:00 (Migrated from github.com)
Review
```suggestion ```
} }
const feed = rss.assembleFeed(series); const feed = rss.assembleFeed(series);
console.log(feed);
const xml = responseXML(feed, STATUS_CODE.OK); const xml = responseXML(feed, STATUS_CODE.OK);
console.log({ feed, xml }); console.log({ feed, xml });