[mqtt_bridge_lxmf] mqtt client has changed the API, DIRTY FIX
Closed this issue · 1 comments
gertsch7003 commented
OLD Line:
MQTT_CONNECTION = mqtt.Client(CONFIG["mqtt"]["client_id"], False, userdata=None, transport=CONFIG["mqtt"]["transport"])
NEW Line:
MQTT_CONNECTION = mqtt.Client(mqtt.CallbackAPIVersion.VERSION1, CONFIG["mqtt"]["client_id"], False, userdata=None, transport=CONFIG["mqtt"]["transport"])
SebastianObi commented
I updated the code for the new version.