From e61186ee82d665360c3fb04ee49e854712cde132 Mon Sep 17 00:00:00 2001 From: gemu2015 Date: Tue, 7 Jun 2022 08:27:44 +0200 Subject: [PATCH] increase max json path element size --- tasmota/tasmota_support/support.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 tasmota/tasmota_support/support.ino diff --git a/tasmota/tasmota_support/support.ino b/tasmota/tasmota_support/support.ino old mode 100644 new mode 100755 index 8601a4058..c3c82d8b0 --- a/tasmota/tasmota_support/support.ino +++ b/tasmota/tasmota_support/support.ino @@ -1734,7 +1734,7 @@ uint32_t JsonParsePath(JsonParserObject *jobj, const char *spath, char delim, fl #endif JsonParserObject obj = *jobj; JsonParserObject lastobj = obj; - char selem[32]; + char selem[64]; uint8_t aindex = 0; String value = ""; while (1) {