diff --git a/SignalMessaging/contacts/SystemContactsFetcher.swift b/SignalMessaging/contacts/SystemContactsFetcher.swift index db835e064..b4c750fca 100644 --- a/SignalMessaging/contacts/SystemContactsFetcher.swift +++ b/SignalMessaging/contacts/SystemContactsFetcher.swift @@ -146,9 +146,6 @@ public class SystemContactsFetcher: NSObject { public private(set) var systemContactsHaveBeenRequestedAtLeastOnce = false private var hasSetupObservation = false - private var isFetching = false - private var hasQueuedFetch = false - override init() { self.contactStoreAdapter = ContactsFrameworkContactStoreAdaptee() @@ -235,7 +232,6 @@ public class SystemContactsFetcher: NSObject { @objc public func fetchOnceIfAlreadyAuthorized() { SwiftAssertIsOnMainThread(#function) - guard authorizationStatus == .authorized else { return } @@ -273,25 +269,11 @@ public class SystemContactsFetcher: NSObject { Logger.error("background task time ran out contacts fetch completed.") }) - guard !isFetching else { - Logger.info("\(self.TAG) queuing contact fetch; contact fetch already in flight.") - hasQueuedFetch = true - return - } - isFetching = true - // Ensure completion is invoked on main thread. let completion: (Error?) -> Void = { error in DispatchMainThreadSafe({ - self.isFetching = false - completionParam?(error) backgroundTask = nil - - if self.hasQueuedFetch { - self.hasQueuedFetch = false - self.fetchOnceIfAlreadyAuthorized() - } }) }