Browse Source

Updates another call to setMute().

j8
bgrozev 10 years ago
parent
commit
5588bcd167
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      modules/xmpp/xmpp.js

+ 1
- 1
modules/xmpp/xmpp.js View File

@@ -414,7 +414,7 @@ var XMPP = {
414 414
         // It is not clear what is the right way to handle multiple tracks.
415 415
         // So at least make sure that they are all muted or all unmuted and
416 416
         // that we send presence just once.
417
-        APP.RTC.localAudio.setMute(!mute);
417
+        APP.RTC.localAudio.setMute(mute);
418 418
         // isMuted is the opposite of audioEnabled
419 419
         this.sendAudioInfoPresence(mute, callback);
420 420
         return true;

Loading…
Cancel
Save