socket path is now relative to domain (but not to directory in domain)

This commit is contained in:
Rusty Striker 2024-10-04 14:44:10 +03:00
parent 1beeb9fdbc
commit ac813064fd
Signed by: RustyStriker
GPG key ID: 9DBDBC7C48FC3C31

View file

@ -1,5 +1,5 @@
const tavern = {
socket: socket = new WebSocket('ws://localhost:3001/ws'),
socket: socket = new WebSocket('ws:/' + window.location.host + '/ws'),
connected: false,
loggedIn: false,
call: (f, ...args) => {