debugging attempt
[vchess.git] / client / src / views / Hall.vue
index 1031e49..355010a 100644 (file)
@@ -370,6 +370,11 @@ export default {
       return this.people[sid].pages.some(p => p.indexOf("/game/") >= 0);
     },
     getActionLabel: function(sid) {
+
+
+console.log(this.people[sid]);
+
+
       return this.people[sid].pages.some(p => p == "/")
         ? "Challenge"
         : "Observe";
@@ -600,7 +605,8 @@ export default {
           // NOTE: it may be live or correspondance
           const game = data.data;
           // Ignore games where I play (corr games)
-          if (game.players.every(p => p.id != this.st.user.id))
+          if (game.players.every(p =>
+            p.sid != this.st.user.sid || p.id != this.st.user.id))
           {
             let locGame = this.games.find(g => g.id == game.id);
             if (!locGame) {