Refined this logic due to some issues in the testing phase.
Unable to test 183 SDP early media yet as we have a bug around that ongoing with FreeSWITCH support
This commit is contained in:
parent
800e347e26
commit
bf1ab93cbc
|
@ -2409,8 +2409,8 @@ static switch_status_t sofia_receive_message(switch_core_session_t *session, swi
|
|||
switch_core_session_pass_indication(session, SWITCH_MESSAGE_INDICATE_ANSWER);
|
||||
}
|
||||
} else {
|
||||
if (msg->numeric_arg && !(switch_channel_test_flag(channel, CF_ANSWERED) && code == 488)) {
|
||||
if (code === 180 || code == 183 || code > 399) {
|
||||
if (msg->numeric_arg && !(switch_channel_test_flag(channel, CF_ANSWERED) && code == 488) && code != 180 && code != 183) {
|
||||
if (code > 399) {
|
||||
switch_call_cause_t cause = sofia_glue_sip_cause_to_freeswitch(code);
|
||||
if (code == 401 || cause == 407) cause = SWITCH_CAUSE_USER_CHALLENGE;
|
||||
|
||||
|
|
Loading…
Reference in New Issue