mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-10-29 02:19:21 +08:00
update review suggestions
Co-authored-by: Adam Stachowicz <saibamenppl@gmail.com>
This commit is contained in:
@@ -96,8 +96,7 @@ exports.mqttAsync = function (hostname, topic, okMessage) {
|
|||||||
let client = mqtt.connect(hostname);
|
let client = mqtt.connect(hostname);
|
||||||
client.on("connect", () => {
|
client.on("connect", () => {
|
||||||
client.subscribe(topic);
|
client.subscribe(topic);
|
||||||
}
|
});
|
||||||
);
|
|
||||||
client.on("message", (messageTopic, message) => {
|
client.on("message", (messageTopic, message) => {
|
||||||
console.log(messageTopic);
|
console.log(messageTopic);
|
||||||
if (messageTopic == topic && message.toString() !== okMessage) {
|
if (messageTopic == topic && message.toString() !== okMessage) {
|
||||||
|
|||||||
Reference in New Issue
Block a user