We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8970718 + 1fc68a3 commit 16760f4Copy full SHA for 16760f4
web/js/MonitorStream.js
@@ -1029,7 +1029,7 @@ function MonitorStream(monitorData) {
1029
volumeSlider.setAttribute('data-volume', parseInt(audioStream.volume * 100));
1030
if (volumeSlider.allowSetValue) {
1031
volumeSlider.noUiSlider.set(audioStream.volume * 100);
1032
- if (audioStream.muted === true) {
+ if (audioStream.muted === true || audioStream.volume === 0) {
1033
this.changeStateIconMute('off');
1034
volumeSlider.classList.add('noUi-mute');
1035
} else {
0 commit comments