From 8733b429dd908644e4d08e25309270ab0cf4f71a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=B6nig?= Date: Sun, 20 Apr 2025 22:50:55 +0200 Subject: [PATCH] Treat FTL return data as strings - part II MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christian König --- advanced/Scripts/api.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/advanced/Scripts/api.sh b/advanced/Scripts/api.sh index 65a4eaa5..006a8d31 100755 --- a/advanced/Scripts/api.sh +++ b/advanced/Scripts/api.sh @@ -226,7 +226,7 @@ GetFTLData() { # return only the data if [ "${status}" = 200 ]; then # response OK - echo "${data}" + printf %s "${data}" else # connection lost echo "${status}"