From 3e1ea323837a0572598c96ed778109e24e0dc372 Mon Sep 17 00:00:00 2001 From: Peter Stockings Date: Mon, 2 Mar 2026 22:13:19 +1100 Subject: [PATCH] Upate desktop app to point from local to production server --- desktop-client/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop-client/main.py b/desktop-client/main.py index 4b3367c..47bff01 100644 --- a/desktop-client/main.py +++ b/desktop-client/main.py @@ -47,7 +47,7 @@ class VlcSyncApp(QMainWindow): self.ignore_vlc_events = False self.last_reported_time_ms = 0 - self.sync_client = SyncClientThread("ws://localhost:3000/ws") + self.sync_client = SyncClientThread("wss://video-sync.peterstockings.com/ws") self.sync_client.connected.connect(self.on_ws_connected) self.sync_client.room_joined.connect(self.on_room_joined) self.sync_client.room_error.connect(self.on_room_error)