SebastianObi/LXMF-Tools

[mqtt_bridge_lxmf] mqtt client has changed the API, DIRTY FIX

Closed this issue · 1 comments

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"])

I updated the code for the new version.