From bd4f59085d3a6a365dc47ce6fcdc6cc3eb36129a Mon Sep 17 00:00:00 2001 From: Benoit Martins Date: Thu, 4 Sep 2025 15:16:03 +0200 Subject: [PATCH] Use point_to_point string for encrypted calls in conference --- Linphone/UI/Call/CallView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Linphone/UI/Call/CallView.swift b/Linphone/UI/Call/CallView.swift index 6e2a1a2a3..c63669942 100644 --- a/Linphone/UI/Call/CallView.swift +++ b/Linphone/UI/Call/CallView.swift @@ -347,7 +347,7 @@ struct CallView: View { .padding(.leading, 50) .padding(.top, 35) - Text("call_zrtp_end_to_end_encrypted") + Text(callViewModel.isConference ? "call_srtp_point_to_point_encrypted" : "call_zrtp_end_to_end_encrypted") .foregroundStyle(Color.blueInfo500) .default_text_style_white(styleSize: 12) .padding(.top, 35)