From db00248c1dff9b9dfdfd0623e4f0ba65449579ea Mon Sep 17 00:00:00 2001 From: Natsumi Date: Mon, 13 Sep 2021 13:28:26 +1200 Subject: [PATCH] Bug fix --- html/src/app.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/html/src/app.js b/html/src/app.js index 9d90e346..9b1825b9 100644 --- a/html/src/app.js +++ b/html/src/app.js @@ -7113,8 +7113,13 @@ speechSynthesis.getVoices(); userId: ref.userId, time }; - $app.addGameLog(entry); database.addGamelogJoinLeaveToDatabase(entry); + this.gameLogTable.data.push(entry); + } + if (playerList.length > 0) { + this.updateSharedFeed(false); + this.notifyMenu('gameLog'); + this.sweepGameLog(); } if (this.lastLocation.date !== 0) { var timeLocation = new Date().getTime() - this.lastLocation.date;