Skip to content

Commit

Permalink
Update index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebenner authored Oct 23, 2024
1 parent 7453da1 commit b541a64
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@ if (process.env.PFP_JSON_URL) {
});
}

const mqttBrokerUrl = "mqtt://mqtt.meshtastic.org"; // the original project took a nose dive, so this server is trash
const basymeshMqttBrokerUrl = "mqtt://mqtt.bayme.sh";
const mqttBrokerUrl = "mqtt://mqtt.meshtastic.org";
const mqttUsername = "meshdev";
const mqttPassword = "large4cats";

Expand Down Expand Up @@ -473,7 +472,7 @@ const createDiscordMessage = async (packetGroup, text) => {
// password: mqttPassword,
// });

const baymesh_client = mqtt.connect(basymeshMqttBrokerUrl, {
const baymesh_client = mqtt.connect(mqttBrokerUrl, {
username: mqttUsername,
password: mqttPassword,
});
Expand Down

0 comments on commit b541a64

Please sign in to comment.