From f41a24f8f2c0a7ad5452b23fd227e85612b44ea2 Mon Sep 17 00:00:00 2001 From: Mitchell McCaffrey Date: Fri, 16 Oct 2020 13:35:08 +1100 Subject: [PATCH] Removed socket crash --- src/helpers/Session.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/helpers/Session.js b/src/helpers/Session.js index 9e48dfe..7343c72 100644 --- a/src/helpers/Session.js +++ b/src/helpers/Session.js @@ -58,8 +58,6 @@ 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)