From a420f377dc94eeb3dbcdc43250f2957c7758185b Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sat, 30 Dec 2017 13:16:40 -0800 Subject: [PATCH] =?UTF-8?q?Fix=20bug=20finding=20favicon=20where=20it?= =?UTF-8?q?=E2=80=99s=20at=20the=20default=20location=20(/favicon.ico)=20a?= =?UTF-8?q?nd=20otherwise=20not=20specified.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Evergreen/Favicons/FaviconDownloader.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Evergreen/Favicons/FaviconDownloader.swift b/Evergreen/Favicons/FaviconDownloader.swift index 3d8ca5f0c..72409b158 100644 --- a/Evergreen/Favicons/FaviconDownloader.swift +++ b/Evergreen/Favicons/FaviconDownloader.swift @@ -78,7 +78,7 @@ final class FaviconDownloader { return favicon(with: faviconURL) } - FaviconURLFinder.findFaviconURL(url) { (faviconURL) in + findFaviconURL(with: url) { (faviconURL) in if let faviconURL = faviconURL { self.homePageToFaviconURLCache[url] = faviconURL let _ = self.favicon(with: faviconURL)