From 8820a851127fc4e118125d0ea53070cdb25a9025 Mon Sep 17 00:00:00 2001 From: Philippe G Date: Tue, 4 Aug 2020 10:30:18 -0700 Subject: [PATCH] missing space after command header - release --- 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 cdba7a58..450d3d67 100644 --- a/components/wifi-manager/code.js +++ b/components/wifi-manager/code.js @@ -343,7 +343,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';