From c7f02150f9bd9ecdbadb7a367ca41f13428994f3 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Sun, 19 May 2019 10:43:45 -0500 Subject: [PATCH] Make sure we go and get missing articles when we add a new feed. --- Frameworks/Account/Feedbin/FeedbinAccountDelegate.swift | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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)) + } + } } } }