Merge pull request #96 from ElvisTheKing/patch-1

correct handling of dns fauilure
This commit is contained in:
Nick O'Leary 2016-01-31 20:48:43 +00:00
commit 36bb1ffa6a

View File

@ -122,7 +122,7 @@ boolean PubSubClient::connect(const char *id, const char *user, const char *pass
} else {
result = _client->connect(this->ip, this->port);
}
if (result) {
if (result == 1) {
nextMsgId = 1;
// Leave room in the buffer for header and variable length field
uint16_t length = 5;