Browse Source

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

master
yanas 9 years ago
parent
commit
d7d5ab67a9
4 changed files with 13992 additions and 13736 deletions
  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 View File

@@ -58,7 +58,7 @@ var JitsiConferenceEvents = {
58 58
     /**
59 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 63
      * A media track ( attached to the conference) mute status was changed.
64 64
      */

+ 13974
- 13719
lib-jitsi-meet.js
File diff suppressed because it is too large
View File


+ 16
- 16
lib-jitsi-meet.min.js
File diff suppressed because it is too large
View File


+ 1
- 0
modules/RTC/DataChannels.js View File

@@ -103,6 +103,7 @@ DataChannels.prototype.onDataChannel = function (event) {
103 103
             else if ("InLastNChangeEvent" === colibriClass) {
104 104
                 var oldValue = obj.oldValue;
105 105
                 var newValue = obj.newValue;
106
+
106 107
                 // Make sure that oldValue and newValue are of type boolean.
107 108
                 var type;
108 109
 

Loading…
Cancel
Save