diff --git a/app/index.html b/app/index.html index a3cfb14c..23138db0 100644 --- a/app/index.html +++ b/app/index.html @@ -31,7 +31,11 @@ scheduleUpdate = function (delay) { clearTimeout(updateTimeout); updateTimeout = setTimeout(function () { - appCache.update(); + try { + appCache.update(); + } catch (ex) { + console.log('appCache.update: ' + ex); + } }, delay || 300000); }, attach = function () {