Merge pull request #3753 from letscontrolit/build/ArduinoIDE_compile_error

Add 'client' to http.begin call
This commit is contained in:
TD-er
2021-09-07 09:54:05 +02:00
committed by GitHub
+1 -1
View File
@@ -528,7 +528,7 @@ String send_via_http(const String& logIdentifier,
#if defined(CORE_POST_2_6_0) || defined(ESP32)
http.begin(client, host, port, uri, false); // HTTP
#else
http.begin(host, port, uri);
http.begin(client, host, port, uri);
#endif
{