From ec88ebee225e5d52b4518634554aae63621e8d31 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Thu, 23 Jan 2025 21:52:57 -0800 Subject: [PATCH] Fix lint issues. --- Shared/Favicons/FaviconDownloader.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shared/Favicons/FaviconDownloader.swift b/Shared/Favicons/FaviconDownloader.swift index 47b5789a2..1182cb20b 100644 --- a/Shared/Favicons/FaviconDownloader.swift +++ b/Shared/Favicons/FaviconDownloader.swift @@ -193,7 +193,7 @@ final class FaviconDownloader { Self.logger.debug("FaviconDownloader: received didLoadFavicon notification for home page URL \(homePageURL)") } - guard let _ = singleFaviconDownloader.iconImage else { + if singleFaviconDownloader.iconImage == nil { if let faviconURLs = remainingFaviconURLs[homePageURL] { if let nextIconURL = faviconURLs.first { _ = favicon(with: nextIconURL, homePageURL: singleFaviconDownloader.homePageURL)