Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/fredlcore/BSB_LAN
Browse files Browse the repository at this point in the history
  • Loading branch information
fredlcore committed Feb 1, 2025
2 parents cea8728 + 52a8b36 commit 41fbabd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions BSB_LAN/bsb-version.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#define MAJOR "4"
#define MINOR "2"
#define PATCH "70"
#define COMPILETIME "20250126141502"
#define PATCH "71"
#define COMPILETIME "20250126152957"
2 changes: 1 addition & 1 deletion BSB_LAN/include/mqtt_handler.h
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ bool mqtt_connect() {
} else {
printlnToDebug("Connected to MQTT broker, updating will topic");
mqtt_reconnect_timer = 0;
char tempTopic[67];
char tempTopic[sizeof(MQTTTopicPrefix)+2];
strcpy(tempTopic, MQTTTopicPrefix);
strcat(tempTopic, "/#");
MQTTPubSubClient->subscribe(tempTopic, 1); //Luposoft: set the topic listen to
Expand Down

0 comments on commit 41fbabd

Please sign in to comment.