Renames a variable/field for the purposes of clarity.

pull/211/head 294
Lyubomir Marinov 11 years ago
parent ae4dafb06d
commit 4230aa1ff1
  1. 6
      libs/strophe/strophe.jingle.sessionbase.js

@ -13,7 +13,7 @@ function SessionBase(connection, sid) {
* in response to a user command in contrast to an automatic decision made
* by the application logic.
*/
this.muteByUser = true;
this.videoMuteByUser = false;
}
@ -285,8 +285,8 @@ SessionBase.prototype.setVideoMute = function (mute, callback, options) {
// The user's command to mute the (local) video takes precedence over any
// automatic decision made by the application logic.
if (byUser) {
this.muteByUser = mute;
} else if (this.muteByUser) {
this.videoMuteByUser = mute;
} else if (this.videoMuteByUser) {
return;
}
if (mute == this.isVideoMute())

Loading…
Cancel
Save