Re #1446 (misc fix): Fix call info to display correct invite state

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@3996 74dad513-b988-da41-8d7b-12977e46ad98
This commit is contained in:
Sauw Ming 2012-03-30 06:18:50 +00:00
parent ca9c3fd533
commit 4f82c4d8b3
1 changed files with 7 additions and 1 deletions

View File

@ -1541,7 +1541,13 @@ PJ_DEF(pj_status_t) pjsua_call_get_info( pjsua_call_id call_id,
pj_memcpy(&info->setting, &call->opt, sizeof(call->opt));
/* state, state_text */
info->state = (call->inv? call->inv->state: PJSIP_INV_STATE_DISCONNECTED);
if (call->inv) {
info->state = call->inv->state;
} else if (call->async_call.dlg) {
info->state = PJSIP_INV_STATE_NULL;
} else {
info->state = PJSIP_INV_STATE_DISCONNECTED;
}
info->state_text = pj_str((char*)pjsip_inv_state_name(info->state));
/* If call is disconnected, set the last_status from the cause code */