From 4e6720a8ecff46256eeef0b61dcbe03026e69a45 Mon Sep 17 00:00:00 2001 From: Christian Herzog Date: Sat, 19 Oct 2019 20:13:51 +0200 Subject: [PATCH] fix BT sample rate on sl command line for now --- components/wifi-manager/code.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/wifi-manager/code.js b/components/wifi-manager/code.js index a8202f77..605b4bd2 100644 --- a/components/wifi-manager/code.js +++ b/components/wifi-manager/code.js @@ -334,7 +334,7 @@ $(document).ready(function(){ var commandLine = commandHeader + '-n ' + $("#player").val(); if (output == 'bt') { - commandLine += ' -o "BT -n \'' + $("#btsink").val() + '\'" -R -Z 192000'; + commandLine += ' -o "BT -n \'' + $("#btsink").val() + '\'" -R -Z 192000 -r "44100-44100"'; } else if (output == 'spdif') { commandLine += ' -o SPDIF -R -Z 192000'; } else {