浏览代码

fix: Fixes handling conference properties.

dev1
Boris Grozev 7 年前
父节点
当前提交
615934a78a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      JitsiConference.js

+ 1
- 1
JitsiConference.js 查看文件

@@ -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) {

正在加载...
取消
保存