fixup empty MQTT message
This commit is contained in:
parent
0971368482
commit
5c7b06ff86
5
pool.js
5
pool.js
@ -295,7 +295,10 @@ MQTT.subscribe(
|
|||||||
"zigbee2mqtt/Piscine",
|
"zigbee2mqtt/Piscine",
|
||||||
function (topic, msg) {
|
function (topic, msg) {
|
||||||
status.tick_mqtt++;
|
status.tick_mqtt++;
|
||||||
print("[POOL] mqtt", topic);
|
print("[POOL] mqtt", topic, msg);
|
||||||
|
if (msg == "") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
let obj = JSON.parse(msg);
|
let obj = JSON.parse(msg);
|
||||||
if (obj.temperature === undefined) {
|
if (obj.temperature === undefined) {
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user