From adbb5b6392c6724cb90041389b91985d6e20ac32 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Thu, 21 Nov 2019 19:08:40 -0600 Subject: [PATCH] Remove callback that shouldn't have been added. --- iOS/SceneCoordinator.swift | 1 - 1 file changed, 1 deletion(-) diff --git a/iOS/SceneCoordinator.swift b/iOS/SceneCoordinator.swift index a82a121e1..322c7ba50 100644 --- a/iOS/SceneCoordinator.swift +++ b/iOS/SceneCoordinator.swift @@ -1483,7 +1483,6 @@ private extension SceneCoordinator { let fetchOperation = FetchRequestOperation(id: fetchSerialNumber, representedObjects: representedObjects) { [weak self] (articles, operation) in precondition(Thread.isMainThread) guard !operation.isCanceled, let strongSelf = self, operation.id == strongSelf.fetchSerialNumber else { - callback(Set
()) return } callback(articles)