From 8c95e62fc03d88892e694b10354d6af5fd810a2d Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Mon, 14 Dec 2020 21:36:47 -0600 Subject: [PATCH] Don't use the feed icon for XKCD since it is always the current comic and doesn't scale down well. Fixes #2669 --- Shared/Images/WebFeedIconDownloader.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shared/Images/WebFeedIconDownloader.swift b/Shared/Images/WebFeedIconDownloader.swift index 930afe8a3..4604a1285 100644 --- a/Shared/Images/WebFeedIconDownloader.swift +++ b/Shared/Images/WebFeedIconDownloader.swift @@ -49,7 +49,7 @@ public final class WebFeedIconDownloader { } private var homePagesWithUglyIcons: Set = { - return Set(["https://www.macsparky.com/"]) + return Set(["https://www.macsparky.com/", "https://xkcd.com/"]) }() private var urlsInProgress = Set()