try to prevent race condition on database suspending

pull/1061/head
Ryan ZHAO 1 week ago
parent f17b02b174
commit fb360de93e

@ -190,9 +190,11 @@ public final class SessionCallManager: NSObject, CallManagerProtocol {
if dependencies[singleton: .appContext].isInBackground {
// Stop all jobs except for message sending and when completed suspend the database
dependencies[singleton: .jobRunner].stopAndClearPendingJobs(exceptForVariant: .messageSend) { [dependencies] _ in
dependencies.mutate(cache: .libSessionNetwork) { $0.suspendNetworkAccess() }
dependencies[singleton: .storage].suspendDatabaseAccess()
Log.flush()
if self.currentCall?.hasEnded != false {
dependencies.mutate(cache: .libSessionNetwork) { $0.suspendNetworkAccess() }
dependencies[singleton: .storage].suspendDatabaseAccess()
Log.flush()
}
}
}
}

@ -361,7 +361,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD
Log.info(.backgroundPoller, "Background poll failed due to manual timeout.")
cancellable?.cancel()
if dependencies[singleton: .appContext].isInBackground {
if dependencies[singleton: .appContext].isInBackground && !self.hasCallOngoing() {
dependencies.mutate(cache: .libSessionNetwork) { $0.suspendNetworkAccess() }
dependencies[singleton: .storage].suspendDatabaseAccess()
Log.flush()
@ -404,7 +404,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD
}
// If we are still running in the background then suspend the network & database
if dependencies[singleton: .appContext].isInBackground {
if dependencies[singleton: .appContext].isInBackground && !self.hasCallOngoing() {
dependencies.mutate(cache: .libSessionNetwork) { $0.suspendNetworkAccess() }
dependencies[singleton: .storage].suspendDatabaseAccess()
Log.flush()

Loading…
Cancel
Save