From 1aaae6ce703d43ccf4328da9b6b4dca4ed67289a Mon Sep 17 00:00:00 2001
From: Benjamin Auder <benjamin.auder@somewhere>
Date: Wed, 4 Mar 2020 19:29:03 +0100
Subject: [PATCH] 'update'

---
 TODO                         | 2 ++
 client/src/views/MyGames.vue | 4 ++++
 2 files changed, 6 insertions(+)

diff --git a/TODO b/TODO
index 3b8b6512..69ecfef6 100644
--- a/TODO
+++ b/TODO
@@ -11,6 +11,8 @@ Saw once a "double challenge" bug, one anonymous and a second one logged
 Both were asked a challenge probably, and both challenges added as different ones.
 => would probably be solved by waiting for identity before adding people to people array
 
+Bug only in prod: observers don't see current games in live games section
+also some games seem to have trouble to start...
 Color bug
 anonymous on game name but username OK in chat
 game not showing on "live games" ... ?
diff --git a/client/src/views/MyGames.vue b/client/src/views/MyGames.vue
index c9c65659..5d19e7d7 100644
--- a/client/src/views/MyGames.vue
+++ b/client/src/views/MyGames.vue
@@ -43,6 +43,10 @@ export default {
   },
   created: function() {
     GameStorage.getAll(true, localGames => {
+
+
+console.log(localGames);
+
       localGames.forEach(g => (g.type = this.classifyObject(g)));
       this.liveGames = localGames;
     });
-- 
2.48.1