Always use the operation queue for fetches so that the tokens don't get out of whack

This commit is contained in:
Maurice Parker
2022-11-12 15:36:50 -06:00
parent d78d61ad5e
commit 4264871789

View File

@@ -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)")
}