Skip to content

Commit c5010dd

Browse files
committed
acording to the docs HttpClient::ready should return the inverse of Process::running()
1 parent 0aa9590 commit c5010dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/Bridge/src/HttpClient.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ void HttpClient::getAsynchronously(const char *url) {
4343
}
4444

4545
boolean HttpClient::ready() {
46-
return running();
46+
return !running();
4747
}
4848

4949
unsigned int HttpClient::getResult() {

0 commit comments

Comments
 (0)