From 5588bcd167d3621fce0044824c4e1a39ef47349f Mon Sep 17 00:00:00 2001 From: bgrozev Date: Thu, 30 Jul 2015 14:24:44 -0500 Subject: [PATCH] Updates another call to setMute(). --- modules/xmpp/xmpp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/xmpp/xmpp.js b/modules/xmpp/xmpp.js index 788ccdd54..1957a1d13 100644 --- a/modules/xmpp/xmpp.js +++ b/modules/xmpp/xmpp.js @@ -414,7 +414,7 @@ var XMPP = { // It is not clear what is the right way to handle multiple tracks. // So at least make sure that they are all muted or all unmuted and // that we send presence just once. - APP.RTC.localAudio.setMute(!mute); + APP.RTC.localAudio.setMute(mute); // isMuted is the opposite of audioEnabled this.sendAudioInfoPresence(mute, callback); return true;