linphonecall.c: when call parameters have been changed, modify the display status accordingly

This commit is contained in:
Gautier Pelloux-Prayer 2015-03-23 17:03:25 +01:00
parent fde1b685bd
commit 67618dbd3b

View file

@ -1296,6 +1296,11 @@ void linphone_call_set_state(LinphoneCall *call, LinphoneCallState cstate, const
linphone_core_multicast_lock_release(call->core);
#endif
break;
case LinphoneCallStreamsRunning:
if (call->prevstate == LinphoneCallUpdating || call->prevstate == LinphoneCallUpdatedByRemote) {
linphone_core_notify_display_status(lc,_("Call parameters were successfully modified."));
}
break;
default:
break;
}