Skip to content

Commit

Permalink
Merge pull request #72 from tswindell/mce
Browse files Browse the repository at this point in the history
[voicecall] Changed call state precedence. Contributes JB#32373
  • Loading branch information
Tom committed Sep 17, 2015
2 parents 847f7df + d3ff248 commit 73ef2ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/mce/src/mceplugin.cpp
Expand Up @@ -153,7 +153,7 @@ void McePlugin::onVoiceCallsChanged()

case AbstractVoiceCallHandler::STATUS_INCOMING:
DEBUG_T("RINGING");
if(state != "active") state = "ringing";
state = "ringing";
continue;

case AbstractVoiceCallHandler::STATUS_DIALING:
Expand All @@ -162,7 +162,7 @@ void McePlugin::onVoiceCallsChanged()
case AbstractVoiceCallHandler::STATUS_HELD:
case AbstractVoiceCallHandler::STATUS_WAITING:
DEBUG_T("ACTIVE");
state = "active";
if(state != "ringing") state = "active";
continue;
}
}
Expand Down

0 comments on commit 73ef2ee

Please sign in to comment.