From 64038487a71aa51ab6906275f3752c5821c4a931 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Tue, 22 Mar 2016 19:54:05 +0100 Subject: [PATCH] =?utf8?q?Fix=20=E2=80=9Cno=20score=20for=20this=20move?= =?utf8?q?=E2=80=9D=20message=20when=20viewing=20history.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- www/js/remoteglot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/js/remoteglot.js b/www/js/remoteglot.js index 5f0531e..e3b3202 100644 --- a/www/js/remoteglot.js +++ b/www/js/remoteglot.js @@ -1085,7 +1085,7 @@ var update_board = function() { update_clock(); // The score. - if (current_display_line) { + if (current_display_line && !current_display_line_is_history) { if (current_display_line.score) { $("#score").text(format_long_score(current_display_line.score)); } else { -- 2.39.2