diff --git a/Frameworks/Account/Account.swift b/Frameworks/Account/Account.swift index 26ce6f721..14352721e 100644 --- a/Frameworks/Account/Account.swift +++ b/Frameworks/Account/Account.swift @@ -601,17 +601,21 @@ public final class Account: DisplayNameProvider, UnreadCountProvider, Container, structureDidChange() } - public func updateUnreadCounts(for webFeeds: Set, completion: (() -> Void)? = nil) { + public func updateUnreadCounts(for webFeeds: Set, completion: VoidCompletionBlock? = nil) { if webFeeds.isEmpty { + completion?() return } - database.fetchUnreadCounts(for: webFeeds.webFeedIDs()) { (unreadCountDictionary) in - for webFeed in webFeeds { - if let unreadCount = unreadCountDictionary[webFeed.webFeedID] { - webFeed.unreadCount = unreadCount + database.fetchUnreadCounts(for: webFeeds.webFeedIDs()) { unreadCountDictionaryResult in + if let unreadCountDictionary = try? unreadCountDictionaryResult.get() { + for webFeed in webFeeds { + if let unreadCount = unreadCountDictionary[webFeed.webFeedID] { + webFeed.unreadCount = unreadCount + } } } + completion?() } }