We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b374ab commit fdcb610Copy full SHA for fdcb610
js/boardui.js
@@ -166,10 +166,10 @@ function InitializeBackgroundEngine() {
166
g_backgroundEngine.onmessage = function (e) {
167
if (e.data.match("^pv") == "pv") {
168
UpdatePVDisplay(e.data.substr(3, e.data.length - 3));
169
- } else if (e.data.match("^message") == "message") {
+ } else if (e.data.match("^message") == "message") {
170
EnsureAnalysisStopped();
171
UpdatePVDisplay(e.data.substr(8, e.data.length - 8));
172
- }
+ } else {
173
UIPlayMove(GetMoveFromString(e.data), null);
174
}
175
0 commit comments