diff --git a/src/lib/util/LinkResolver.ts b/src/lib/util/LinkResolver.ts index 2c1c796..23e1814 100644 --- a/src/lib/util/LinkResolver.ts +++ b/src/lib/util/LinkResolver.ts @@ -45,7 +45,7 @@ function getIconFromUrl(url: URL): string | undefined { const href = url.href; if (href.startsWith('mailto:')) return 'email'; - if (href.endsWith('/rss.xml') || href.endsWith('/atom.rss')) + if (href.endsWith('/rss.xml') || href.endsWith('/atom.rss') || href.endsWith('.atom')) return 'rss'; const hostname = url.hostname;