From cd3aef62ec726cc0684abdfcffa66dfbcccda427 Mon Sep 17 00:00:00 2001 From: Spencer Pogorzelski <34356756+Scoder12@users.noreply.github.com> Date: Mon, 14 Aug 2023 14:37:48 -0700 Subject: [PATCH] Revert "update unrouteable websocket addr" This reverts commit 1ccf1bb285daab5c80095d74da29081b08cd2ce0. --- client/src/AdriftClient.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/client/src/AdriftClient.ts b/client/src/AdriftClient.ts index d98950b..c969895 100644 --- a/client/src/AdriftClient.ts +++ b/client/src/AdriftClient.ts @@ -66,8 +66,7 @@ export class AdriftBareClient extends Client { onReadyState: ReadyStateCallback, webSocketImpl: WebSocketImpl ): WebSocket { - // IP of TEST-NET-1 (https://superuser.com/a/698392/917616) - const ws = new webSocketImpl("ws:192.0.2.0", protocols); + const ws = new webSocketImpl("ws:null", protocols); // this will error. that's okay let initalCloseHappened = false; ws.addEventListener("close", (e) => {