Call the completion block once and only once from FetchRequestOperation. This is a probable fix for #898.

This commit is contained in:
Brent Simmons 2019-09-03 22:58:17 -07:00
parent cbaad4bdeb
commit 0ba8f3b4e1

View File

@ -52,10 +52,14 @@ class FetchRequestOperation {
var fetchersReturned = 0
var fetchedArticles = Set<Article>()
for articleFetcher in articleFetchers {
var didCallCompletion = false
articleFetcher.fetchArticlesAsync { (articles) in
precondition(Thread.isMainThread)
if self.isCanceled {
completion(self)
if !didCallCompletion {
didCallCompletion = true
completion(self)
}
return
}
fetchedArticles.formUnion(articles)