mirror of
https://github.com/arendst/Tasmota.git
synced 2026-03-07 07:47:37 +01:00
Wrong timeout in WebQuery and webclient since Core3 (#21442)
This commit is contained in:
@@ -500,7 +500,7 @@ void HTTPClientLight::setTimeout(uint16_t timeout)
|
||||
{
|
||||
_tcpTimeout = timeout;
|
||||
if(connected()) {
|
||||
_client->setTimeout((timeout + 500) / 1000);
|
||||
_client->setTimeout(timeout);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1176,7 +1176,7 @@ bool HTTPClientLight::connect(void)
|
||||
}
|
||||
|
||||
// set Timeout for WiFiClient and for Stream::readBytesUntil() and Stream::readStringUntil()
|
||||
_client->setTimeout((_tcpTimeout + 500) / 1000);
|
||||
_client->setTimeout(_tcpTimeout);
|
||||
|
||||
log_d(" connected to %s:%u", _host.c_str(), _port);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user