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.
1 parent 5561829 commit 1fc68a3Copy full SHA for 1fc68a3
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