X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FGame.vue;h=851c6d767582e13a47b92a0e00fe7ca5124f2358;hb=0d329b05fd922645ee52e6709d119a002c8aad64;hp=e5b57a9700c37c7bd811eb6a90220191859f97ce;hpb=00c07ba3526b71e95fee9912510221ca47e5a79a;p=vchess.git diff --git a/client/src/views/Game.vue b/client/src/views/Game.vue index e5b57a97..851c6d76 100644 --- a/client/src/views/Game.vue +++ b/client/src/views/Game.vue @@ -463,7 +463,7 @@ export default { game.chats.sort((c1, c2) => { return c2.added - c1.added; }); - if (myIdx >= 0 && game.chats.length > 0) { + if (myIdx >= 0 && game.score == "*" && game.chats.length > 0) { // Did a chat message arrive after my last move? let vr_tmp = new V(game.fen); //start from last position const flags = V.ParseFen(game.fen).flags; //may be undefined