Correcting debug code which was crashing due to a change in the Dictionary class

This commit is contained in:
Th3maz1ng 2019-09-13 21:13:39 +02:00
parent 563664931e
commit 6c24020456

View File

@ -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