]> git.sesse.net Git - remoteglot/commitdiff
Add a temporary safeguard.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Mon, 21 Mar 2016 22:52:32 +0000 (23:52 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Mon, 21 Mar 2016 22:52:32 +0000 (23:52 +0100)
www/js/remoteglot.js

index 04bc1493c9f37a51bf39d05208181b1bb000b7c4..21a995eea87a4073c7a92062ab8964e069baf340 100644 (file)
@@ -1907,6 +1907,9 @@ var fmt_cp = function(v) {
 }
 
 var format_short_score = function(score) {
+       if (!score) {
+               return "???";
+       }
        if (score[0] === 'm') {
                if (score[2]) {  // Is a bound.
                        return score[2] + "\u00a0M" + pad(score[1], 3);