Upate desktop app to point from local to production server

This commit is contained in:
Peter Stockings
2026-03-02 22:13:19 +11:00
parent 36d6aeaf51
commit 3e1ea32383

View File

@@ -47,7 +47,7 @@ class VlcSyncApp(QMainWindow):
self.ignore_vlc_events = False self.ignore_vlc_events = False
self.last_reported_time_ms = 0 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.connected.connect(self.on_ws_connected)
self.sync_client.room_joined.connect(self.on_room_joined) self.sync_client.room_joined.connect(self.on_room_joined)
self.sync_client.room_error.connect(self.on_room_error) self.sync_client.room_error.connect(self.on_room_error)