Switch to async didReceiveRemoteNotification.

This commit is contained in:
Brent Simmons 2024-03-24 23:36:05 -07:00
parent f6e8d3afb1
commit e371d31bd6
1 changed files with 8 additions and 11 deletions

View File

@ -125,19 +125,16 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD
#endif
return true
}
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
DispatchQueue.main.async {
self.resumeDatabaseProcessingIfNecessary()
self.accountManager.receiveRemoteNotification(userInfo: userInfo) {
self.suspendApplication()
completionHandler(.newData)
}
}
}
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any]) async -> UIBackgroundFetchResult {
resumeDatabaseProcessingIfNecessary()
await accountManager.receiveRemoteNotification(userInfo: userInfo)
suspendApplication()
return .newData
}
func applicationWillTerminate(_ application: UIApplication) {
shuttingDown = true
}