From 71f9f82270ae19b81675c302cff1751210b529b3 Mon Sep 17 00:00:00 2001 From: Christian Herzog Date: Mon, 2 Dec 2019 19:32:35 +0100 Subject: [PATCH] allow spaces in player name --- 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 7036e470..d14c2914 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';