mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 00:09:51 +03:00
make topic str bigger to allow for homeassistance long packages
This commit is contained in:
@@ -454,7 +454,7 @@ std::shared_ptr<const MqttMessage> Mqtt::queue_message(const uint8_t operation,
|
|||||||
message = std::make_shared<MqttMessage>(operation, topic, std::move(payload), retain);
|
message = std::make_shared<MqttMessage>(operation, topic, std::move(payload), retain);
|
||||||
} else {
|
} else {
|
||||||
// prefix the hostname
|
// prefix the hostname
|
||||||
std::string full_topic(20, '\0');
|
std::string full_topic(50, '\0');
|
||||||
snprintf_P(&full_topic[0], full_topic.capacity() + 1, PSTR("%s/%s"), Mqtt::hostname_.c_str(), topic.c_str());
|
snprintf_P(&full_topic[0], full_topic.capacity() + 1, PSTR("%s/%s"), Mqtt::hostname_.c_str(), topic.c_str());
|
||||||
message = std::make_shared<MqttMessage>(operation, full_topic, std::move(payload), retain);
|
message = std::make_shared<MqttMessage>(operation, full_topic, std::move(payload), retain);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user