Browse Source

Fixed status changed detection in Firefox.

pull/51/head
Simon Eisenmann 11 years ago
parent
commit
ff20003ef5
  1. 2
      static/js/controllers/mediastreamcontroller.js

2
static/js/controllers/mediastreamcontroller.js

@ -184,7 +184,7 @@ define(['underscore', 'bigscreen', 'moment', 'sjcl', 'webrtc.adapter'], function @@ -184,7 +184,7 @@ define(['underscore', 'bigscreen', 'moment', 'sjcl', 'webrtc.adapter'], function
} else {
console.log("Updating own status", status);
mediaStream.api.updateStatus(status);
cache.status = status;
cache.status = _.clone(status);
}
};
}());

Loading…
Cancel
Save