Skip to content

Commit

Permalink
fix: Fixes handling conference properties.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgrozev committed Sep 18, 2018
1 parent 1ac6df9 commit 615934a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JitsiConference.js
Original file line number Diff line number Diff line change
Expand Up @@ -2560,7 +2560,7 @@ JitsiConference.prototype._onIceConnectionEstablished = function(
* @private
*/
JitsiConference.prototype._updateProperties = function(properties = {}) {
const changed = isEqual(properties, this.properties);
const changed = !isEqual(properties, this.properties);

this.properties = properties;
if (changed) {
Expand Down

0 comments on commit 615934a

Please sign in to comment.