mirror of
https://github.com/meshtastic/firmware.git
synced 2025-04-27 02:14:37 +00:00
MQTT: don't subscribe to JSON topic if JSON is disabled in config.
This commit is contained in:
parent
70d44b8838
commit
9665c08b59
@ -176,9 +176,11 @@ void MQTT::sendSubscriptions()
|
|||||||
String topic = cryptTopic + channels.getGlobalId(i) + "/#";
|
String topic = cryptTopic + channels.getGlobalId(i) + "/#";
|
||||||
DEBUG_MSG("Subscribing to %s\n", topic.c_str());
|
DEBUG_MSG("Subscribing to %s\n", topic.c_str());
|
||||||
pubSub.subscribe(topic.c_str(), 1); // FIXME, is QOS 1 right?
|
pubSub.subscribe(topic.c_str(), 1); // FIXME, is QOS 1 right?
|
||||||
String topicDecoded = jsonTopic + channels.getGlobalId(i) + "/#";
|
if (moduleConfig.mqtt.json_enabled == true) {
|
||||||
DEBUG_MSG("Subscribing to %s\n", topicDecoded.c_str());
|
String topicDecoded = jsonTopic + channels.getGlobalId(i) + "/#";
|
||||||
pubSub.subscribe(topicDecoded.c_str(), 1); // FIXME, is QOS 1 right?
|
DEBUG_MSG("Subscribing to %s\n", topicDecoded.c_str());
|
||||||
|
pubSub.subscribe(topicDecoded.c_str(), 1); // FIXME, is QOS 1 right?
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user