fix: websocket url

This commit is contained in:
2023-12-26 14:28:04 +01:00
parent 52c7d9eafb
commit efbcd10fb0
3 changed files with 6 additions and 18 deletions

View File

@ -19,12 +19,7 @@ class MatchMaking
if (!await this.client.isAuthentificate())
return null;
let url = `
${window.location.protocol == 'https' ? 'wss' : 'ws'}
://${window.location.host}
/ws/matchmaking/
${mode}
`;
let url = `${window.location.protocol[4] === 's' ? 'wss' : 'ws'}://${window.location.host}/ws/matchmaking/${mode}`;
this._socket = new WebSocket(url);