1
0
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:
Manuel Rabade 2014-05-12 02:12:02 -05:00
parent 0aa9590b92
commit c5010dde39

View File

@ -43,7 +43,7 @@ void HttpClient::getAsynchronously(const char *url) {
}
boolean HttpClient::ready() {
return running();
return !running();
}
unsigned int HttpClient::getResult() {