From 73e23630c7d99dc833000fd1970382ca7e78fb44 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Sun, 5 Apr 2026 10:46:11 +0200 Subject: [PATCH] fix volume --- web/js/audio.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/js/audio.js b/web/js/audio.js index fa7b843..8bfdc1e 100644 --- a/web/js/audio.js +++ b/web/js/audio.js @@ -134,7 +134,7 @@ function OnPlayButtonClick(_ev) { } function updateVolume() { - if(firefox) { + if(!firefox) { const newVolume = $(this).val(); if (Stream) Stream.setVolume(newVolume); else console.warn("Stream is not initialized.");