You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a user is currently on a call on Android and they receive a secondary inbound call, the secondary call is automatically declined as per the following line:
voidemmitCallReceived(PjSipAccountaccount, PjSipCallcall) {
// Automatically decline incoming call when user uses GSMif (!mGSMIdle) {
try {
call.hangup(newCallOpParam(true));
} catch (Exceptione) {
Log.w(TAG, "Failed to decline incoming call when user uses GSM", e);
}
return;
}
...
}
On the other hand, iOS is able to receive multiple calls just fine. Why is this code here for Android? Is the Android module incomplete and this catch was just placed here in the meantime?
The text was updated successfully, but these errors were encountered:
If a user is currently on a call on Android and they receive a secondary inbound call, the secondary call is automatically declined as per the following line:
On the other hand, iOS is able to receive multiple calls just fine. Why is this code here for Android? Is the Android module incomplete and this catch was just placed here in the meantime?
The text was updated successfully, but these errors were encountered: