Test server crash

This commit is contained in:
Mitchell McCaffrey 2020-10-16 13:12:59 +11:00
parent 1e11870171
commit b7aa33dd0c
2 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,3 @@
REACT_APP_BROKER_URL=https://connect.owlbear.rodeo
REACT_APP_ICE_SERVERS_URL=https://connect.owlbear.rodeo/iceservers
REACT_APP_BROKER_URL=https://test.owlbear.rodeo
REACT_APP_ICE_SERVERS_URL=https://test.owlbear.rodeo/iceservers
REACT_APP_VERSION=$npm_package_version

View File

@ -58,6 +58,8 @@ class Session extends EventEmitter {
super();
this.socket = io(process.env.REACT_APP_BROKER_URL);
this.socket.emit("join party", null, null);
this.socket.on(
"party member joined",
this._handlePartyMemberJoined.bind(this)