mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
Fix INVITE without SDP.
This commit is contained in:
parent
4c2eb1a61a
commit
c0179c92c0
2 changed files with 5 additions and 5 deletions
|
|
@ -165,11 +165,11 @@ public class IncomingCallActivity extends Activity implements LinphoneOnCallStat
|
|||
if (!LinphoneActivity.isInstanciated()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (mCall.getRemoteParams().getVideoEnabled() && LinphoneManager.getInstance().isAutoAcceptCamera()) {
|
||||
final LinphoneCallParams remoteParams = mCall.getRemoteParams();
|
||||
if (remoteParams != null && remoteParams.getVideoEnabled()
|
||||
&& LinphoneManager.getInstance().isAutoAcceptCamera()) {
|
||||
LinphoneActivity.instance().startVideoActivity(mCall);
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
LinphoneActivity.instance().startIncallActivity(mCall);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 07c4120600ac9e7060f619fa2b94a7b29cbe79da
|
||||
Subproject commit ba478b89e88f5b60f6f3ee5bfe9c636cd8648f3e
|
||||
Loading…
Add table
Reference in a new issue