nedap server: gracefully handle missing backend

This commit is contained in:
Astro 2011-10-14 21:15:45 +02:00
parent 9774738066
commit 4bf35a0dbd
1 changed files with 2 additions and 1 deletions

View File

@ -44,7 +44,8 @@ var updateBackendTimeout;
function updateBackend() {
if (!updateBackendTimeout) {
updateBackendTimeout = setTimeout(function() {
backend.sendUTF(JSON.stringify({ scores: scores }));
if (backend)
backend.sendUTF(JSON.stringify({ scores: scores }));
updateBackendTimeout = undefined;
}, 50);
}