From 42648717894f70fd28698156bf446d87d1e94559 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Sat, 12 Nov 2022 15:36:50 -0600 Subject: [PATCH] Always use the operation queue for fetches so that the tokens don't get out of whack --- Account/Sources/Account/CloudKit/CloudKitAccountDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Account/Sources/Account/CloudKit/CloudKitAccountDelegate.swift b/Account/Sources/Account/CloudKit/CloudKitAccountDelegate.swift index a86134963..3fe3cbec3 100644 --- a/Account/Sources/Account/CloudKit/CloudKitAccountDelegate.swift +++ b/Account/Sources/Account/CloudKit/CloudKitAccountDelegate.swift @@ -804,7 +804,7 @@ private extension CloudKitAccountDelegate { self.sendArticleStatus(for: account, showProgress: true) { result in switch result { case .success: - self.articlesZone.fetchChangesInZone() { _ in } + self.refreshArticleStatus(for: account) { _ in } case .failure(let error): self.logger.error("CloudKit Feed send articles error: \(error.localizedDescription, privacy: .public)") }