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
1 changed files with 1 additions and 1 deletions

View File

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