From 97e3117f668bc219b0de3eab5eef8932f6b9702e Mon Sep 17 00:00:00 2001 From: NoobishSVK Date: Sun, 24 Mar 2024 20:11:41 +0100 Subject: [PATCH] actually last hotfix for bw toggle --- web/js/confighandler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/js/confighandler.js b/web/js/confighandler.js index 16552da..7aac934 100644 --- a/web/js/confighandler.js +++ b/web/js/confighandler.js @@ -230,7 +230,7 @@ function submitData() { $("#device-type").val(selectedDevice.text()); } - $('#toggle-bw').is(":checked", data.bwSwitch ? data.bwSwitch : false); + $('#toggle-bw').prop("checked", data.bwSwitch ? data.bwSwitch : false); $('#audio-devices').val(data.audio.audioDevice); $('#audio-channels').val(data.audio.audioChannels);