Skip to content

Commit 245d879

Browse files
committed
Merge pull request #2066 from manuel-rabade/fix-httpclient-ready
Fix HttpClient::ready() return value
2 parents 0aa9590 + c5010dd commit 245d879

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/Bridge/src/HttpClient.cpp

+1-1
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)