We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bb4f74 commit 4eb25a7Copy full SHA for 4eb25a7
HttpClient.h
@@ -370,7 +370,7 @@ class HttpClient : public Client
370
virtual int connect(IPAddress ip, uint16_t port) { return iClient->connect(ip, port); };
371
virtual int connect(const char *host, uint16_t port) { return iClient->connect(host, port); };
372
virtual void stop();
373
- virtual uint8_t connected() { iClient->connected(); };
+ virtual uint8_t connected() { return iClient->connected(); };
374
virtual operator bool() { return bool(iClient); };
375
protected:
376
/** Reset internal state data back to the "just initialised" state
0 commit comments