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
1 changed files with 2 additions and 1 deletions

View File

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