diff --git a/src/org/linphone/InCallActivity.java b/src/org/linphone/InCallActivity.java index 475f724e5..d894df2e7 100644 --- a/src/org/linphone/InCallActivity.java +++ b/src/org/linphone/InCallActivity.java @@ -136,7 +136,7 @@ public class InCallActivity extends FragmentActivity implements LinphoneCall call = LinphoneManager.getLc().getCalls()[0]; if (LinphoneUtils.isCallEstablished(call)) { - isVideoEnabled = call.getCurrentParamsCopy().getVideoEnabled(); + isVideoEnabled = call.getCurrentParamsCopy().getVideoEnabled() && !call.getRemoteParams().isLowBandwidthEnabled(); enableAndRefreshInCallActions(); } }