mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 03:48:08 +00:00
Small fix to prevent the app to consider itself as in video mode after a pause/resume if correspondent in low bandwidth mode
This commit is contained in:
parent
836615cb2e
commit
ecd0202d60
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue