Update routes/api/feeds/[seriesId].ts

This commit is contained in:
Olav Sundfør 2024-04-14 12:14:10 +02:00 committed by GitHub
parent 8db94b2710
commit c33264f601
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 1 deletions

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;
}; };