Updates another call to setMute().

This commit is contained in:
bgrozev 2015-07-30 14:24:44 -05:00
parent a7058747ac
commit 5588bcd167
1 changed files with 1 additions and 1 deletions

View File

@ -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;