increase max json path element size

This commit is contained in:
gemu2015 2022-06-07 08:27:44 +02:00
parent cc771f31e9
commit e61186ee82
1 changed files with 1 additions and 1 deletions

2
tasmota/tasmota_support/support.ino Normal file → Executable file
View File

@ -1734,7 +1734,7 @@ uint32_t JsonParsePath(JsonParserObject *jobj, const char *spath, char delim, fl
#endif #endif
JsonParserObject obj = *jobj; JsonParserObject obj = *jobj;
JsonParserObject lastobj = obj; JsonParserObject lastobj = obj;
char selem[32]; char selem[64];
uint8_t aindex = 0; uint8_t aindex = 0;
String value = ""; String value = "";
while (1) { while (1) {