mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-16 11:21:18 +03:00
acording to the docs HttpClient::ready should return the inverse of Process::running()
This commit is contained in:
@ -43,7 +43,7 @@ void HttpClient::getAsynchronously(const char *url) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
boolean HttpClient::ready() {
|
boolean HttpClient::ready() {
|
||||||
return running();
|
return !running();
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int HttpClient::getResult() {
|
unsigned int HttpClient::getResult() {
|
||||||
|
Reference in New Issue
Block a user