diff --git a/app/feed.xml/route.ts b/app/feed.xml/route.ts index 532b120..2d976b6 100644 --- a/app/feed.xml/route.ts +++ b/app/feed.xml/route.ts @@ -33,14 +33,12 @@ export async function GET(req: NextRequest) { let _article = $('article').first() let title = _article.find('h1').first().text() let date = _article.find('time').first().attr('datetime') ?? new Date() - let image = _article.find('image').first().html() ?? "" let content = _article.find('.prose').first().html() ?? "" feed.addItem({ title, id: url, link: url, - image, content, author: [author], contributor: [author],