From 30dd6926e307754f20c2ef283bb154df42fee335 Mon Sep 17 00:00:00 2001 From: Benoit Martins Date: Mon, 15 May 2023 11:16:55 +0200 Subject: [PATCH] Remove auto enable_rtp_bundle when app is launched --- Classes/LinphoneManager.m | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Classes/LinphoneManager.m b/Classes/LinphoneManager.m index 1b593a920..f4f55473d 100644 --- a/Classes/LinphoneManager.m +++ b/Classes/LinphoneManager.m @@ -529,10 +529,12 @@ static int check_should_migrate_images(void *data, int argc, char **argv, char * } } - if (!linphone_account_params_rtp_bundle_enabled(newAccountParams)) { - linphone_account_params_enable_rtp_bundle(newAccountParams, true); - linphone_account_set_params(account,newAccountParams); - } + /* + if (!linphone_account_params_rtp_bundle_enabled(newAccountParams)) { + linphone_account_params_enable_rtp_bundle(newAccountParams, true); + linphone_account_set_params(account,newAccountParams); + } + */ LOGI(@"Setting the sip 'expires' parameters of existing account to 1 month (2629800 seconds)"); linphone_account_params_set_expires(newAccountParams, 2629800);