From 8e639bd03fb0fcab7a22e6d806d68d3a84b5ef13 Mon Sep 17 00:00:00 2001 From: Christian Herzog Date: Wed, 10 Jun 2020 16:57:34 +0200 Subject: [PATCH] fix SL command line --- 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 ab34d109..511c4038 100644 --- a/components/wifi-manager/code.js +++ b/components/wifi-manager/code.js @@ -442,7 +442,7 @@ $(document).ready(function(){ }); $("#generate-command").on("click", function() { - var commandLine = commandHeader + '-n "' + $("#player").val() + '"'; + var commandLine = commandHeader + ' -n "' + $("#player").val() + '"'; if (output == 'bt') { commandLine += ' -o "BT -n \'' + $("#btsink").val() + '\'" -R -Z 192000';