From 2ee50054dcf1bf9fd98f06d7a71db282a6ed0b91 Mon Sep 17 00:00:00 2001 From: Kiel Gillard Date: Thu, 2 Jan 2020 10:00:09 +1100 Subject: [PATCH] Indicate FeedlyOperations are asynchronous. --- Frameworks/Account/Feedly/Operations/FeedlyOperation.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Frameworks/Account/Feedly/Operations/FeedlyOperation.swift b/Frameworks/Account/Feedly/Operations/FeedlyOperation.swift index 2057fe657..190bc3771 100644 --- a/Frameworks/Account/Feedly/Operations/FeedlyOperation.swift +++ b/Frameworks/Account/Feedly/Operations/FeedlyOperation.swift @@ -29,6 +29,10 @@ class FeedlyOperation: Operation { } } + override var isAsynchronous: Bool { + return true + } + func didFinish() { assert(Thread.isMainThread) assert(!isFinished, "Finished operation is attempting to finish again.")