Change to use correct favicon downloader function. Issue #1552

This commit is contained in:
Maurice Parker 2020-01-07 14:17:00 -07:00
parent 8a670afbe5
commit dff6c1b9c4
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ class WebFeedInspectorViewController: UITableViewController {
if let feedIcon = appDelegate.webFeedIconDownloader.icon(for: webFeed) {
return feedIcon
}
if let favicon = appDelegate.faviconDownloader.favicon(for: webFeed) {
if let favicon = appDelegate.faviconDownloader.faviconAsIcon(for: webFeed) {
return favicon
}
return FaviconGenerator.favicon(webFeed)

View File

@ -776,7 +776,7 @@ private extension MasterFeedViewController {
return feedIconImage
}
if let faviconImage = appDelegate.faviconDownloader.favicon(for: webFeed) {
if let faviconImage = appDelegate.faviconDownloader.faviconAsIcon(for: webFeed) {
return faviconImage
}