From: Benjamin Auder <benjamin.auder@somewhere>
Date: Thu, 20 Feb 2020 12:28:20 +0000 (+0100)
Subject: Fix corr game loading
X-Git-Url: https://git.auder.net/variants/img/pieces/scripts/doc/%3C?a=commitdiff_plain;h=28bef70e8dc7f3aee648707dd68ed79f660f1fd0;p=vchess.git

Fix corr game loading
---

diff --git a/client/src/views/Game.vue b/client/src/views/Game.vue
index 2108493c..e25fc5ec 100644
--- a/client/src/views/Game.vue
+++ b/client/src/views/Game.vue
@@ -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;