From f91bc5b050b8d5c5da07f6623881669037867216 Mon Sep 17 00:00:00 2001 From: Benjamin Auder Date: Wed, 4 Mar 2020 22:55:17 +0100 Subject: [PATCH] Fixed corr challenge refused bug --- client/src/views/Hall.vue | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/client/src/views/Hall.vue b/client/src/views/Hall.vue index 7c3a442d..83de5a44 100644 --- a/client/src/views/Hall.vue +++ b/client/src/views/Hall.vue @@ -407,6 +407,15 @@ export default { processChat: function(chat) { this.send("newchat", { data: chat }); }, + getOppsid: function(c) { + let oppsid = c.from.sid; //may not be defined if corr + offline opp + if (!oppsid) { + oppsid = Object.keys(this.people).find( + sid => this.people[sid].id == c.from.id + ); + } + return oppsid; + }, // Messaging center: socketMessageListener: function(msg) { if (!this.conn) return; @@ -797,10 +806,9 @@ export default { }; this.launchGame(c); } else { - -console.log(c); - - this.send("refusechallenge", { data: c.id, target: c.from.sid }); + const oppsid = this.getOppsid(c); + if (oppSid) + this.send("refusechallenge", { data: c.id, target: oppsid }); } this.send("deletechallenge", { data: c.id }); }, @@ -860,13 +868,8 @@ console.log(c); vid: c.vid, cadence: c.cadence }; - let oppsid = c.from.sid; //may not be defined if corr + offline opp - if (!oppsid) { - oppsid = Object.keys(this.people).find( - sid => this.people[sid].id == c.from.id - ); - } const notifyNewgame = () => { + const oppsid = this.getOppsid(c); if (oppsid) //opponent is online this.send("startgame", { data: gameInfo, target: oppsid }); -- 2.44.0