Make sure self.postDidLoadFaviconNotification() is always called after a download attempt

Otherwise the rest of the favicon URLs won't be tried.
This commit is contained in:
Nate Weaver 2019-11-27 15:40:35 -06:00
parent 24634dfaaa
commit f690bba775

View File

@ -85,8 +85,9 @@ private extension SingleFaviconDownloader {
if let image = image { if let image = image {
self.iconImage = IconImage(image) self.iconImage = IconImage(image)
self.postDidLoadFaviconNotification()
} }
self.postDidLoadFaviconNotification()
} }
} }