Fixes issue with video mute indicator.
This commit is contained in:
parent
f902b99287
commit
520e655100
|
@ -19,7 +19,7 @@
|
||||||
<script src="libs/popover.js?v=1"></script><!-- bootstrap tooltip lib -->
|
<script src="libs/popover.js?v=1"></script><!-- bootstrap tooltip lib -->
|
||||||
<script src="libs/toastr.js?v=1"></script><!-- notifications lib -->
|
<script src="libs/toastr.js?v=1"></script><!-- notifications lib -->
|
||||||
<script src="interface_config.js?v=5"></script>
|
<script src="interface_config.js?v=5"></script>
|
||||||
<script src="libs/app.bundle.js?v=50"></script>
|
<script src="libs/app.bundle.js?v=51"></script>
|
||||||
<script src="analytics.js?v=1"></script><!-- google analytics plugin -->
|
<script src="analytics.js?v=1"></script><!-- google analytics plugin -->
|
||||||
<link rel="stylesheet" href="css/font.css?v=6"/>
|
<link rel="stylesheet" href="css/font.css?v=6"/>
|
||||||
<link rel="stylesheet" href="css/toastr.css?v=1">
|
<link rel="stylesheet" href="css/toastr.css?v=1">
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -151,7 +151,7 @@ var RTC = {
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!stream)
|
if(!stream)
|
||||||
return false;
|
return true;
|
||||||
|
|
||||||
if (value != stream.muted) {
|
if (value != stream.muted) {
|
||||||
stream.setMute(value);
|
stream.setMute(value);
|
||||||
|
|
Loading…
Reference in New Issue