From a252967ea9d177865d98b0d4f6fe6a3f6a6a1eef Mon Sep 17 00:00:00 2001 From: liamcottle Date: Wed, 17 Jul 2024 13:19:55 +1200 Subject: [PATCH] update default topic --- src/mqtt.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mqtt.js b/src/mqtt.js index a5b9762..e5808bc 100644 --- a/src/mqtt.js +++ b/src/mqtt.js @@ -133,7 +133,7 @@ if(options.help){ const mqttBrokerUrl = options["mqtt-broker-url"] ?? "mqtt://mqtt.meshtastic.org"; const mqttUsername = options["mqtt-username"] ?? "meshdev"; const mqttPassword = options["mqtt-password"] ?? "large4cats"; -const mqttTopic = options["mqtt-topic"] ?? "#"; +const mqttTopic = options["mqtt-topic"] ?? "msh/#"; const collectServiceEnvelopes = options["collect-service-envelopes"] ?? false; const collectPositions = options["collect-positions"] ?? false; const collectTextMessages = options["collect-text-messages"] ?? false;