From 1e8c1d809bbf4ec4f68581744a48e6bf0585da0c Mon Sep 17 00:00:00 2001 From: gsd Date: Sun, 4 Feb 2024 14:03:53 +0300 Subject: [PATCH] fix final --- ws.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ws.py b/ws.py index 0903525..f2f8621 100644 --- a/ws.py +++ b/ws.py @@ -26,7 +26,13 @@ class WS: sys.exit(1) else: print(f"Run after setup {SERVICE_NAME}: {START_AFTER_CONNECT}") - addr = backend.replace("https://", "wss://") + + addr = backend + if not "wss://" in addr: + addr = addr.replace("https://", "wss://") + if not "/ws/services" in addr: + addr += "/ws/services" + print(f"Connect to {addr}, secret len: {len(auth)}") self.ws = websocket.WebSocketApp(addr, cookie="secretkey="+auth, on_close=self.on_close, on_open=self.on_open)