From 856c8aa61158ba3f4dfbb321b27d0e29f33771fe Mon Sep 17 00:00:00 2001 From: Blaz Kristan Date: Sat, 20 Nov 2021 18:28:59 +0100 Subject: [PATCH] Bugfix for effect names. --- wled00/json.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/wled00/json.cpp b/wled00/json.cpp index b8bf08e75..54289d3f5 100644 --- a/wled00/json.cpp +++ b/wled00/json.cpp @@ -870,6 +870,7 @@ void serializeModeNames(JsonArray arr, const char *qstring) { break; case ']': case ',': + if (insideQuotes) break; if (lineBuffer.length() > 0) { uint8_t endPos = lineBuffer.indexOf('@'); if (endPos>0) arr.add(lineBuffer.substring(0,endPos));