From 6c240204569020ed5a70e0454179e84deedca470 Mon Sep 17 00:00:00 2001 From: Th3maz1ng Date: Fri, 13 Sep 2019 21:13:39 +0200 Subject: [PATCH] Correcting debug code which was crashing due to a change in the Dictionary class --- src/app/WEBServerManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/WEBServerManager.cpp b/src/app/WEBServerManager.cpp index 67dac7b..404ef9c 100644 --- a/src/app/WEBServerManager.cpp +++ b/src/app/WEBServerManager.cpp @@ -296,7 +296,7 @@ boolean WEBServerManager::parseQuery(WiFiClient *wifiClient) Serial.println("GET PARAMS :"); for(int i = 0; i < _httpRequestData.getParams.count(); i++) { - Serial.print(_httpRequestData.getParams.getParameter(i));Serial.print(" : ");Serial.println(_httpRequestData.getParams(i)->getString()); + Serial.print(_httpRequestData.getParams.getParameter(i));Serial.print(" : ");Serial.println(_httpRequestData.getParams.getAt(i)->getString()); } #endif