mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-01 12:24:14 +01:00
acording to the docs HttpClient::ready should return the inverse of Process::running()
This commit is contained in:
parent
0aa9590b92
commit
c5010dde39
@ -43,7 +43,7 @@ void HttpClient::getAsynchronously(const char *url) {
|
||||
}
|
||||
|
||||
boolean HttpClient::ready() {
|
||||
return running();
|
||||
return !running();
|
||||
}
|
||||
|
||||
unsigned int HttpClient::getResult() {
|
||||
|
Loading…
Reference in New Issue
Block a user