From beee9986277b46e6f95379de415da12d390942bd Mon Sep 17 00:00:00 2001 From: Benoit Martins Date: Thu, 24 Jul 2025 16:36:19 +0200 Subject: [PATCH] Disable isEndToEndEncryptedChatAvailable check when creating a conference --- Linphone/Utils/LinphoneUtils.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Linphone/Utils/LinphoneUtils.swift b/Linphone/Utils/LinphoneUtils.swift index 5ff803c49..dcd3b420d 100644 --- a/Linphone/Utils/LinphoneUtils.swift +++ b/Linphone/Utils/LinphoneUtils.swift @@ -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 {