diff --git a/Session.xcodeproj/project.pbxproj b/Session.xcodeproj/project.pbxproj index 6a81ad97c..15f456bab 100644 --- a/Session.xcodeproj/project.pbxproj +++ b/Session.xcodeproj/project.pbxproj @@ -7819,7 +7819,7 @@ CODE_SIGN_ENTITLEMENTS = Session/Meta/Signal.entitlements; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 508; + CURRENT_PROJECT_VERSION = 510; DEVELOPMENT_TEAM = SUQ8J2PCT7; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", @@ -7890,7 +7890,7 @@ CODE_SIGN_ENTITLEMENTS = Session/Meta/Signal.entitlements; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 508; + CURRENT_PROJECT_VERSION = 510; DEVELOPMENT_TEAM = SUQ8J2PCT7; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", diff --git a/Session/Calls/Call Management/SessionCallManager.swift b/Session/Calls/Call Management/SessionCallManager.swift index 51173ef2c..49a0a6fbf 100644 --- a/Session/Calls/Call Management/SessionCallManager.swift +++ b/Session/Calls/Call Management/SessionCallManager.swift @@ -302,6 +302,7 @@ public extension SessionCallManager { public var provider: CXProvider? public func getOrCreateProvider(useSystemCallLog: Bool) -> CXProvider { + SNLog("[Calls] getOrCreateProvider") if let provider: CXProvider = self.provider { return provider } diff --git a/Session/Meta/AppDelegate.swift b/Session/Meta/AppDelegate.swift index 1f728c06e..4cf9f05e1 100644 --- a/Session/Meta/AppDelegate.swift +++ b/Session/Meta/AppDelegate.swift @@ -42,6 +42,8 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD verifyDBKeysAvailableBeforeBackgroundLaunch() _ = AppVersion.shared + /// Create a proper `SessionCallManager` for the main app (defaults to a no-op version) + Singleton.setCallManager(SessionCallManager(using: dependencies)) Singleton.setPushRegistrationManager(PushRegistrationManager(using: dependencies)) Singleton.pushRegistrationManager.createVoipRegistryIfNecessary() @@ -60,7 +62,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD Log.info("[AppDelegate] Setting up environment.") /// Create a proper `SessionCallManager` for the main app (defaults to a no-op version) - Singleton.setCallManager(SessionCallManager(using: dependencies)) +// Singleton.setCallManager(SessionCallManager(using: dependencies)) // Setup LibSession LibSession.addLogger()