From c515daa76e82d4147ee3f59f63dad2f2af8f59d0 Mon Sep 17 00:00:00 2001 From: Nils Grunwald Date: Sun, 6 Nov 2022 11:50:13 +0100 Subject: [PATCH] correct bug with new mqtt server --- web2mqtt/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web2mqtt/views.py b/web2mqtt/views.py index 997e469..e475367 100644 --- a/web2mqtt/views.py +++ b/web2mqtt/views.py @@ -41,7 +41,7 @@ def command(): if not client.is_connected(): print("reconnection to mqtt server...") - client.connect("192.168.178.76",1884,keepalive=60) + client.connect("192.168.178.36",1884,keepalive=60) client.publish(command,opts) content = f"Command: {command} triggered with opts: {opts}"