瀏覽代碼

Fixes Last N event duplicating another event, causing exception when used in the client app.

master
yanas 9 年之前
父節點
當前提交
d7d5ab67a9
共有 4 個檔案被更改,包括 13992 行新增13736 行删除
  1. 1
    1
      JitsiConferenceEvents.js
  2. 13974
    13719
      lib-jitsi-meet.js
  3. 16
    16
      lib-jitsi-meet.min.js
  4. 1
    0
      modules/RTC/DataChannels.js

+ 1
- 1
JitsiConferenceEvents.js 查看文件

58
     /**
58
     /**
59
      * You are included / excluded in somebody's last N set
59
      * You are included / excluded in somebody's last N set
60
      */
60
      */
61
-    IN_LAST_N_CHANGED: "conference.lastNEndpointsChanged",
61
+    IN_LAST_N_CHANGED: "conference.inLastNChanged",
62
     /**
62
     /**
63
      * A media track ( attached to the conference) mute status was changed.
63
      * A media track ( attached to the conference) mute status was changed.
64
      */
64
      */

+ 13974
- 13719
lib-jitsi-meet.js
文件差異過大導致無法顯示
查看文件


+ 16
- 16
lib-jitsi-meet.min.js
文件差異過大導致無法顯示
查看文件


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

103
             else if ("InLastNChangeEvent" === colibriClass) {
103
             else if ("InLastNChangeEvent" === colibriClass) {
104
                 var oldValue = obj.oldValue;
104
                 var oldValue = obj.oldValue;
105
                 var newValue = obj.newValue;
105
                 var newValue = obj.newValue;
106
+
106
                 // Make sure that oldValue and newValue are of type boolean.
107
                 // Make sure that oldValue and newValue are of type boolean.
107
                 var type;
108
                 var type;
108
 
109
 

Loading…
取消
儲存