Remove videoCaptureEnabled and videoDisplayEnabled from CoreContext init

This commit is contained in:
Benoit Martins 2026-01-09 16:47:56 +01:00
parent 4f7e4b0c36
commit aed6876065
2 changed files with 1 additions and 3 deletions

View file

@ -163,8 +163,6 @@ class CoreContext: ObservableObject {
let userAgent = "LinphoneiOS/\(appGitTag) (\(UIDevice.current.localizedModel.replacingOccurrences(of: "'", with: ""))) LinphoneSDK"
self.mCore.setUserAgent(name: userAgent, version: self.coreVersion)
self.mCore.videoCaptureEnabled = true
self.mCore.videoDisplayEnabled = true
self.mCore.videoPreviewEnabled = false
self.mCore.fecEnabled = true

View file

@ -2,6 +2,6 @@ import Foundation
public enum AppGitInfo {
public static let branch = "master"
public static let commit = "6575a4b0f"
public static let commit = "4f7e4b0c3"
public static let tag = "6.1.0-alpha"
}