pull/2737/head
Blaz Kristan 2021-11-19 22:16:08 +01:00
rodzic 44467971f2
commit 7871e868a9
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -830,9 +830,12 @@ void serializeModeData(JsonObject root)
insideQuotes = !insideQuotes;
break;
case '[':
if (insideQuotes) lineBuffer += singleJsonSymbol;
break;
case ']':
if (insideQuotes) {lineBuffer += singleJsonSymbol; break;}
case ',':
if (insideQuotes) {lineBuffer += singleJsonSymbol; break;}
if (lineBuffer.length() > 0) {
uint8_t endPos = lineBuffer.indexOf('@');
if (endPos>0) fxdata.add(lineBuffer.substring(endPos));