From eca85b80ad9ba437d1085b5c5f7438c241018665 Mon Sep 17 00:00:00 2001 From: QuentinArguillere Date: Mon, 10 Jun 2024 15:00:44 +0200 Subject: [PATCH] Need to start core in the core initialization in order to instanciate the PushRegistry and be able to process the voip push --- Linphone/Core/CoreContext.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Linphone/Core/CoreContext.swift b/Linphone/Core/CoreContext.swift index c3e461383..7344dc17b 100644 --- a/Linphone/Core/CoreContext.swift +++ b/Linphone/Core/CoreContext.swift @@ -284,6 +284,7 @@ final class CoreContext: ObservableObject { .sink { _ in self.mCore.iterate() } + try? self.mCore.start() } }