From e90e4a1f088378cb5f0cbae2e76536cfa9fec80a Mon Sep 17 00:00:00 2001 From: olaven Date: Sat, 11 Mar 2023 20:12:06 +0100 Subject: [PATCH] Removed atom:link The validator passes. The mistake was in fact not missing atom:link, but the link on image and the content-type added in 72aad6c8f86e00853f340b9d274700a4e1402be5 --- routes/api/feeds/[seriesId].ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/routes/api/feeds/[seriesId].ts b/routes/api/feeds/[seriesId].ts index 1c25c0e..5c9f4ab 100644 --- a/routes/api/feeds/[seriesId].ts +++ b/routes/api/feeds/[seriesId].ts @@ -36,11 +36,6 @@ async function buildFeed(seriesId: string) { "rss", [ tag("channel", [ - tag("atom:link", "", [ - ["href", `https://nrss.deno.dev/api/feeds/${seriesId}`], - ["rel", "self"], - ["type", "application/rss+xml"] - ]), tag("title", serie.titles.title), tag("link", linkValue), tag("itunes:author", "NRK"),