From 673617690d634cdf9bafdf148ff6bcf7e94bd055 Mon Sep 17 00:00:00 2001 From: Ivan Kuzmenko <6745157+rndtrash@users.noreply.github.com> Date: Tue, 23 Sep 2025 01:34:02 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B0=D1=88=D1=91=D0=BB=20=D0=B5=D1=89?= =?UTF-8?q?=D1=91=20=D0=BE=D0=B4=D0=B8=D0=BD=20=D0=B2=D0=B0=D1=80=D0=B8?= =?UTF-8?q?=D0=B0=D0=BD=D1=82=20=D1=81=D1=81=D1=8B=D0=BB=D0=BA=D0=B8=20?= =?UTF-8?q?=D0=BD=D0=B0=20=D0=BD=D0=BE=D0=B2=D0=BE=D1=81=D1=82=D0=B8=20Ato?= =?UTF-8?q?m?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/lib/util/LinkResolver.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;