Merge branch 'lib-jitsi-meet' into lib-jitsi-meet-shipit
This commit is contained in:
commit
c417ea8b61
|
@ -1342,7 +1342,7 @@ JitsiLocalTrack.prototype._setMute = function (mute) {
|
|||
} else {
|
||||
if (mute) {
|
||||
this.dontFireRemoveEvent = true;
|
||||
this.rtc.room.removeStream(this.stream);
|
||||
this.rtc.room.removeStream(this.stream, function () {});
|
||||
RTC.stopMediaStream(this.stream);
|
||||
if(isAudio)
|
||||
this.rtc.room.setAudioMute(mute);
|
||||
|
|
|
@ -57,7 +57,7 @@ JitsiLocalTrack.prototype._setMute = function (mute) {
|
|||
} else {
|
||||
if (mute) {
|
||||
this.dontFireRemoveEvent = true;
|
||||
this.rtc.room.removeStream(this.stream);
|
||||
this.rtc.room.removeStream(this.stream, function () {});
|
||||
RTC.stopMediaStream(this.stream);
|
||||
if(isAudio)
|
||||
this.rtc.room.setAudioMute(mute);
|
||||
|
|
Loading…
Reference in New Issue