浏览代码

fix: Fixes call to _setTrackMuteStatus.

Broken with previous commit 579a49.
dev1
Дамян Минков 3 年前
父节点
当前提交
208bfc8f4e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      modules/RTC/JitsiLocalTrack.js

+ 1
- 1
modules/RTC/JitsiLocalTrack.js 查看文件

645
      */
645
      */
646
     _sendMuteStatus(mute) {
646
     _sendMuteStatus(mute) {
647
         if (this.conference) {
647
         if (this.conference) {
648
-            this.conference._setTrackMuteStatus(this, mute) && this.conference.room.sendPresence();
648
+            this.conference._setTrackMuteStatus(this.getType(), this, mute) && this.conference.room.sendPresence();
649
         }
649
         }
650
     }
650
     }
651
 
651
 

正在加载...
取消
保存