From f356a4f2a3f97d173cd2877cbed7745a38f24b19 Mon Sep 17 00:00:00 2001 From: Ronan Abhamon Date: Tue, 14 Feb 2017 09:18:52 +0100 Subject: [PATCH] fix(src/components/call/CallModel): fix micro usage --- linphone-desktop/src/components/call/CallModel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linphone-desktop/src/components/call/CallModel.cpp b/linphone-desktop/src/components/call/CallModel.cpp index f145a262c..8e5d7dfc1 100644 --- a/linphone-desktop/src/components/call/CallModel.cpp +++ b/linphone-desktop/src/components/call/CallModel.cpp @@ -235,7 +235,7 @@ bool CallModel::getMicroMuted () const { void CallModel::setMicroMuted (bool status) { shared_ptr core = CoreManager::getInstance()->getCore(); - if (status != core->micEnabled()) { + if (status == core->micEnabled()) { core->enableMic(!status); emit microMutedChanged(status); }