You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to use a MY_MQTT_SUBSCRIBE_TOPIC_PREFIX value containing slashes in the topic:
MY_MQTT_SUBSCRIBE_TOPIC_PREFIX "mysensors/1/in"
The client subscribes correctly, however protocolMQTTParse() currently seems to split the topic by "/" and compares the first element with MY_MQTT_SUBSCRIBE_TOPIC_PREFIX. It would probably be better to first trim the topic by MY_MQTT_SUBSCRIBE_TOPIC_PREFIX before splitting.