X-Git-Url: https://git.sesse.net/?p=remoteglot;a=blobdiff_plain;f=www%2Fjs%2Fhash-lookup.js;h=654a3f9b9202ea9a1e16b2c324a77fc7a72f68d4;hp=8fe12970bb0e5ac5f75dc8b730a3a6586fa0d882;hb=7fce0b7f07ae1d4377885fef9e9fbbf99c795035;hpb=260a30a0f85011e878d9cd0b98fb5a47fee85613 diff --git a/www/js/hash-lookup.js b/www/js/hash-lookup.js index 8fe1297..654a3f9 100644 --- a/www/js/hash-lookup.js +++ b/www/js/hash-lookup.js @@ -86,12 +86,13 @@ var translate_line = function(board, fen, line) { } r['pv_pretty'] = pv; - // Convert the score. + // Convert the score. Use the static eval if no search. + var value = line['value'] || line['eval']; var score = null; - if (line['value']['score_type'] === 'SCORE_CP') { - score = ['cp', line['value']['score_cp']]; - } else if (line['value']['score_type'] === 'SCORE_MATE') { - score = ['m', line['value']['score_mate']]; + if (value['score_type'] === 'SCORE_CP') { + score = ['cp', value['score_cp']]; + } else if (value['score_type'] === 'SCORE_MATE') { + score = ['m', value['score_mate']]; } if (score) { if (line['bound'] === 'BOUND_UPPER') {