diff --git a/src/index.ts b/src/index.ts index bfa0433..59fccc9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -29,10 +29,6 @@ for (const [group, feeds] of Object.entries(feedList)) { for (const feed of feeds) { try { - if (DEBUG) { - console.log(feed); - } - const response = await fetch(feed); const body = await parseFeed(response); @@ -42,7 +38,6 @@ for (const [group, feeds] of Object.entries(feedList)) { const contents: FeedItem = (typeof body === "string" ? (await parser.parseString(body)) : body) as FeedItem; - contents.feed = feed; contents.title = getTitle(contents); contents.link = getLink(contents);