Add debug trace to understand why corr move 1 isn't recorded
authorBenjamin Auder <benjamin.auder@somewhere>
Wed, 4 Mar 2020 22:54:55 +0000 (23:54 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Wed, 4 Mar 2020 22:54:55 +0000 (23:54 +0100)
server/models/Game.js

index cfaddfe..92c0130 100644 (file)
@@ -253,13 +253,13 @@ const GameModel =
         db.get(query, (err,ret) => {
           const m = obj.move;
 
+return cb({errmsg: ret.maxIdx + " " + m.idx + " " + (!ret.maxIdx || ret.maxIdx + 1 == m.idx) + " " + query});
 
 
           if (!ret.maxIdx || ret.maxIdx + 1 == m.idx) {
             query =
               "INSERT INTO Moves (gid, squares, played, idx) VALUES " +
               "(" + id + ",?," + m.played + "," + m.idx + ")";
-return cb({errmsg: (!ret.maxIdx || ret.maxIdx + 1 == m.idx) + " " + query});
             db.run(query, JSON.stringify(m.squares));
             cb(null);
           }