mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-06 21:33:08 +00:00
don't report 487 as call errors.
This commit is contained in:
parent
51a3a36ad2
commit
c5b17b4aa3
1 changed files with 2 additions and 2 deletions
|
|
@ -214,7 +214,7 @@ int linphone_call_failure(LinphoneCore *lc, eXosip_event_t *ev)
|
|||
}*/
|
||||
lc->vtable.display_message(lc,tmpmsg);
|
||||
break;
|
||||
case 487:
|
||||
case 487: /*request terminated*/
|
||||
lc->vtable.display_status(lc,msg487);
|
||||
break;
|
||||
case 600:
|
||||
|
|
@ -244,7 +244,7 @@ int linphone_call_failure(LinphoneCore *lc, eXosip_event_t *ev)
|
|||
linphone_core_stop_media_streams(lc);
|
||||
if (call!=NULL) {
|
||||
linphone_call_destroy(call);
|
||||
gstate_new_state(lc, GSTATE_CALL_ERROR, NULL);
|
||||
if (code!=487) gstate_new_state(lc, GSTATE_CALL_ERROR, NULL);
|
||||
lc->call=NULL;
|
||||
}
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue