diff --git a/src/lib/misc.ts b/src/lib/misc.ts index 726ad1f935..fe5671c093 100644 --- a/src/lib/misc.ts +++ b/src/lib/misc.ts @@ -201,7 +201,7 @@ export function getGameResultText( return ""; } /* SGFs will encode the full result in the outcome */ - if (/[+]/.test(outcome)) { + if (/[+]/.test(outcome) && !/Server Decision/.test(outcome)) { return outcome; }