Don't try to scale the favicon for the master feed list.

This commit is contained in:
Maurice Parker 2019-10-31 15:25:45 -05:00
parent 3dd533ed0d
commit 0c32e8de14
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ final class AvatarView: UIView {
imageView.image = image imageView.image = image
if self.traitCollection.userInterfaceStyle == .dark { if self.traitCollection.userInterfaceStyle == .dark {
DispatchQueue.global(qos: .background).async { DispatchQueue.global(qos: .default).async {
if self.image?.isDark() ?? false { if self.image?.isDark() ?? false {
DispatchQueue.main.async { DispatchQueue.main.async {
self.isDisconcernable = false self.isDisconcernable = false

View File

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