diff --git a/Frameworks/Account/Feedbin/FeedbinAccountDelegate.swift b/Frameworks/Account/Feedbin/FeedbinAccountDelegate.swift index 09b8a0314..0149d2d58 100644 --- a/Frameworks/Account/Feedbin/FeedbinAccountDelegate.swift +++ b/Frameworks/Account/Feedbin/FeedbinAccountDelegate.swift @@ -949,8 +949,12 @@ private extension FeedbinAccountDelegate { self?.processEntries(account: account, entries: entries) { self?.refreshArticles(account, page: page) { - DispatchQueue.main.async { - completion(.success(feed)) + self?.refreshArticleStatus(for: account) { + self?.refreshMissingArticles(account) { + DispatchQueue.main.async { + completion(.success(feed)) + } + } } } }