From 47cf9350c86863e6d1b63c948320b2e95cdeed03 Mon Sep 17 00:00:00 2001 From: Benjamin Reis Date: Fri, 14 Apr 2017 11:48:36 +0200 Subject: [PATCH] Do not display video pop up when asking call is within a conference --- Classes/CallView.m | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Classes/CallView.m b/Classes/CallView.m index 94744a9e9..c922897a1 100644 --- a/Classes/CallView.m +++ b/Classes/CallView.m @@ -596,6 +596,9 @@ static void hideSpinner(LinphoneCall *call, void *user_data) { #pragma mark - ActionSheet Functions - (void)displayAskToEnableVideoCall:(LinphoneCall *)call { + if (linphone_call_params_get_local_conference_mode(linphone_call_get_current_params(call))) { + return; + } if (linphone_core_get_video_policy(LC)->automatically_accept && !([UIApplication sharedApplication].applicationState == UIApplicationStateBackground)) return;