From 6bdcd941ae79ae11a7abb4d788698e38cfc9d899 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Sat, 2 May 2020 09:01:53 -0500 Subject: [PATCH] Fix typo --- iOS/AppDelegate.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iOS/AppDelegate.swift b/iOS/AppDelegate.swift index bbadde622..ac41572b5 100644 --- a/iOS/AppDelegate.swift +++ b/iOS/AppDelegate.swift @@ -24,7 +24,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD private var syncBackgroundUpdateTask = UIBackgroundTaskIdentifier.invalid var syncTimer: ArticleStatusSyncTimer? - private let remoteNotificationoperationQueue = MainThreadOperationQueue() + private let remoteNotificationOperationQueue = MainThreadOperationQueue() var shuttingDown = false { didSet { @@ -114,7 +114,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completion: @escaping (UIBackgroundFetchResult) -> Void) { let op = RemoteNotificationOperation(userInfo: userInfo, completion: completion) - remoteNotificationoperationQueue.add(op) + remoteNotificationOperationQueue.add(op) } func applicationWillTerminate(_ application: UIApplication) {