Skip to content
Snippets Groups Projects
Commit b53f0169 authored by Yun Liu's avatar Yun Liu
Browse files

Fix the bug that cannot make an outgoing phone call

parent b189f37a
No related branches found
No related tags found
No related merge requests found
......@@ -954,6 +954,8 @@ void UserAgent::call_on_tsx_changed(pjsip_inv_session *inv, pjsip_transaction *t
}
break;
case PJSIP_TSX_STATE_COMPLETED:
if (tsx->status_code == 407)
break;
if (tsx->status_code / 100 == 6 || tsx->status_code / 100 == 4) {
// We get error message of outgoing call from server
_debug("UserAgent: Server error message is received!\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment