clean: tournament: remove debug print

This commit is contained in:
starnakin 2023-12-26 14:35:45 +01:00
parent 0d926e78c1
commit 44fa122585

View File

@ -77,11 +77,8 @@ class Tourmanent
if (!await this.client.isAuthentificate())
return null;
console.log(window.location.protocol);
let url = `${window.location.protocol[4] === 's' ? 'wss' : 'ws'}://${window.location.host}/ws/tournaments/${this.id}`;
console.log(url);
this._socket = new WebSocket(url);
this.connected = true;