Disable isEndToEndEncryptedChatAvailable check when creating a conference

This commit is contained in:
Benoit Martins 2025-07-24 16:36:19 +02:00
parent bf4e6fd23c
commit beee998627

View file

@ -80,7 +80,8 @@ class LinphoneUtils: NSObject {
conferenceParams.subject = subject
// Enable end-to-end encryption if client supports it
if isEndToEndEncryptedChatAvailable(core: core) {
//if isEndToEndEncryptedChatAvailable(core: core) {
if false {
Log.info("\(#function) Requesting EndToEnd security level for conference")
conferenceParams.securityLevel = .EndToEnd
} else {