Corrected error code from mqtt push
This commit is contained in:
parent
9fc5ab147d
commit
bcee0e21da
@ -488,8 +488,10 @@ void PushTarget::sendMqtt(TemplatingEngine& engine, bool isSecure,
|
|||||||
Log.notice(F("PUSH: MQTT publish successful on %s" CR), topic.c_str());
|
Log.notice(F("PUSH: MQTT publish successful on %s" CR), topic.c_str());
|
||||||
_lastCode = 0;
|
_lastCode = 0;
|
||||||
} else {
|
} else {
|
||||||
|
_lastSuccess = false;
|
||||||
|
_lastCode = mqtt.lastError();
|
||||||
writeErrorLog("PUSH: MQTT push on %s failed error=%d", topic.c_str(),
|
writeErrorLog("PUSH: MQTT push on %s failed error=%d", topic.c_str(),
|
||||||
mqtt.lastError());
|
_lastCode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user