From c2f5edd06649d21c113dbf4672cd32404500f45e Mon Sep 17 00:00:00 2001 From: pypy Date: Tue, 17 Nov 2020 21:32:15 +0900 Subject: [PATCH] bugfix --- html/src/service/gamelog.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/html/src/service/gamelog.js b/html/src/service/gamelog.js index 92281248..62a97263 100644 --- a/html/src/service/gamelog.js +++ b/html/src/service/gamelog.js @@ -46,10 +46,7 @@ class GameLogService { context.updatedAt = now; - if (loginUser !== null && - loginUser === context.loginUser) { - gameLogs.push(gameLog); - } + gameLogs.push(gameLog); } return gameLogs;