This commit is contained in:
metacryst
2026-01-13 17:24:52 -06:00
parent c3f0d8d70d
commit adf25488e4
9 changed files with 47 additions and 160 deletions

View File

@@ -10,7 +10,7 @@ class Connection {
init() {
if(window.location.hostname === "localhost") {
this.ws = new WebSocket("ws://" + "localhost:3008")
this.ws = new WebSocket("ws://" + "localhost:3009")
} else {
this.ws = new WebSocket("wss://" + window.location.hostname + window.location.pathname)
}