'update'
authorBenjamin Auder <benjamin.auder@somewhere>
Wed, 4 Mar 2020 18:29:03 +0000 (19:29 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Wed, 4 Mar 2020 18:29:03 +0000 (19:29 +0100)
TODO
client/src/views/MyGames.vue

diff --git a/TODO b/TODO
index 3b8b651..69ecfef 100644 (file)
--- 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" ... ?
index c9c6565..5d19e7d 100644 (file)
@@ -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;
     });