Fix corr game loading
authorBenjamin Auder <benjamin.auder@somewhere>
Thu, 20 Feb 2020 12:28:20 +0000 (13:28 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Thu, 20 Feb 2020 12:28:20 +0000 (13:28 +0100)
client/src/views/Game.vue

index 2108493..e25fc5e 100644 (file)
@@ -468,7 +468,7 @@ export default {
             let vr_tmp = new V(game.fen); //start from last position
             let dtLastMove = 0;
             for (let midx = game.moves.length - 1; midx >= 0; midx--) {
-              vr_tmp.undo(game.moves[midx]);
+              vr_tmp.undo(game.moves[midx].squares);
               if (vr_tmp.turn == mycolor) {
                 dtLastMove = game.moves[midx].played;
                 break;