Browse Source

fix: Fixes handling conference properties.

dev1
Boris Grozev 7 years ago
parent
commit
615934a78a
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      JitsiConference.js

+ 1
- 1
JitsiConference.js View File

@@ -2560,7 +2560,7 @@ JitsiConference.prototype._onIceConnectionEstablished = function(
2560 2560
  * @private
2561 2561
  */
2562 2562
 JitsiConference.prototype._updateProperties = function(properties = {}) {
2563
-    const changed = isEqual(properties, this.properties);
2563
+    const changed = !isEqual(properties, this.properties);
2564 2564
 
2565 2565
     this.properties = properties;
2566 2566
     if (changed) {

Loading…
Cancel
Save