Continue processing if we don't find any articles. Fixes #3213

This commit is contained in:
Maurice Parker 2021-07-06 16:52:31 -05:00
parent c279f92f79
commit fd4fd5174e

View File

@ -74,12 +74,14 @@ private extension CloudKitSendStatusOperation {
case .success(let syncStatuses): case .success(let syncStatuses):
func stopProcessing() { func stopProcessing() {
self.database.resetAllSelectedForProcessing { _ in
if self.showProgress { if self.showProgress {
self.refreshProgress?.completeTask() self.refreshProgress?.completeTask()
} }
os_log(.debug, log: self.log, "Done sending article statuses.") os_log(.debug, log: self.log, "Done sending article statuses.")
self.operationDelegate?.operationDidComplete(self) self.operationDelegate?.operationDidComplete(self)
} }
}
guard syncStatuses.count > 0 else { guard syncStatuses.count > 0 else {
stopProcessing() stopProcessing()
@ -130,10 +132,10 @@ private extension CloudKitSendStatusOperation {
} }
// If this happens, we have somehow gotten into a state where we have new status records // If this happens, we have somehow gotten into a state where we have new status records
// but the articles didn't come back in the fetch. Rather than crashing, we stop processing // but the articles didn't come back in the fetch. Rather than crashing, we continue processing
// and hope that it gets cleared up later. // and hope that it gets cleared up later.
guard !statusUpdates.isEmpty else { guard !statusUpdates.isEmpty else {
done(true) done(false)
return return
} }