From 258bc2b544f635e41c3515f21c1ccf2781377191 Mon Sep 17 00:00:00 2001 From: proddy Date: Sun, 19 Sep 2021 21:33:49 +0200 Subject: [PATCH] increase json before from 4KB to 16KB (EMSESP_JSON_SIZE_XXLARGE_DYN) --- src/web/WebAPIService.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/WebAPIService.cpp b/src/web/WebAPIService.cpp index 47587a856..274b164de 100644 --- a/src/web/WebAPIService.cpp +++ b/src/web/WebAPIService.cpp @@ -194,7 +194,7 @@ void WebAPIService::parse(AsyncWebServerRequest * request, std::string & device_ } } - PrettyAsyncJsonResponse * response = new PrettyAsyncJsonResponse(false, EMSESP_JSON_SIZE_XLARGE_DYN); + PrettyAsyncJsonResponse * response = new PrettyAsyncJsonResponse(false, EMSESP_JSON_SIZE_XXLARGE_DYN); JsonObject json = response->getRoot(); // now we have all the parameters go and execute the command