diff --git a/coreapi/linphonecall.c b/coreapi/linphonecall.c index 2d90b81e8..2aa0a76bf 100644 --- a/coreapi/linphonecall.c +++ b/coreapi/linphonecall.c @@ -1817,7 +1817,9 @@ void linphone_call_set_state(LinphoneCall *call, LinphoneCallState cstate, const call->log->status=LinphoneCallDeclined; break; case LinphoneReasonNotAnswered: - call->log->status=LinphoneCallMissed; + if (call->log->dir == LinphoneCallIncoming){ + call->log->status=LinphoneCallMissed; + } break; default: break;