Fix initial state of user interaction mute

pull/633/head
yanas 9 years ago
parent c2f46a5cfe
commit d95b2b034b
  1. 3
      modules/UI/shared_video/SharedVideo.js

@ -98,6 +98,8 @@ export default class SharedVideoManager {
// the owner of the video
this.from = id;
this.mutedWithUserInteraction = APP.conference.isLocalAudioMuted();
//listen for local audio mute events
this.localAudioMutedListener = this.onLocalAudioMuted.bind(this);
this.emitter.on(UIEvents.AUDIO_MUTED, this.localAudioMutedListener);
@ -447,7 +449,6 @@ export default class SharedVideoManager {
this.smartPlayerMute(true, false);
// Check if we need to update other participants
this.fireSharedVideoEvent();
}
}

Loading…
Cancel
Save