From: Steinar H. Gunderson Date: Sun, 20 Mar 2016 22:09:14 +0000 (+0100) Subject: Fix score sorting (sigh). X-Git-Url: https://git.sesse.net/?p=remoteglot;a=commitdiff_plain;h=09a335457afb3006129099ffc0fa8fd1f8b0a834 Fix score sorting (sigh). --- diff --git a/www/js/remoteglot.js b/www/js/remoteglot.js index 5f3223d..bba9ad5 100644 --- a/www/js/remoteglot.js +++ b/www/js/remoteglot.js @@ -1793,9 +1793,10 @@ var get_best_move = function(game, source, target) { } var first_move = line['pv_pretty'][0]; if (move_hash[first_move]) { - if (best_move_score === null || line['score_sort_key'] > best_move_score) { + var score = parseInt(line['score_sort_key'], 10); + if (best_move_score === null || score > best_move_score) { best_move = move_hash[first_move]; - best_move_score = line['score_sort_key']; + best_move_score = score; } } }