Merge pull request #592 from maraoz/add/mute-by-default
mute videos by default
This commit is contained in:
commit
11220c7af8
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ angular.module('copayApp.directives')
|
||||||
var nick = peer.nick;
|
var nick = peer.nick;
|
||||||
element.addClass('video-small');
|
element.addClass('video-small');
|
||||||
var muted = controllerUtils.getVideoMutedStatus(peerId);
|
var muted = controllerUtils.getVideoMutedStatus(peerId);
|
||||||
if (muted) {
|
if (true || muted) { // mute everyone for now
|
||||||
element.attr("muted", true);
|
element.attr("muted", true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue