From 272187dee8ebf3bf7052a632406546bbf65f84cc Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 20 Mar 2016 21:24:23 +0100 Subject: [PATCH 1/1] Don't invoke hash probes for positions that are merely historic. --- 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 1472afd..62f10d7 100644 --- a/www/js/remoteglot.js +++ b/www/js/remoteglot.js @@ -1611,7 +1611,7 @@ var update_displayed_line = function() { board.position(hiddenboard.fen()); if (board.fen() === old_fen) { board_is_animating = false; - } else { + } else if (!current_display_line_is_history) { // Fire off a hash request, since we're now off the main position // and it just changed. explore_hash(display_fen); -- 2.39.2