mirror of https://github.com/arendst/Tasmota.git
increase max json path element size
This commit is contained in:
parent
cc771f31e9
commit
e61186ee82
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue