diff --git a/apps/lcars/lcars.app.js b/apps/lcars/lcars.app.js index 848065994..9af585ff7 100644 --- a/apps/lcars/lcars.app.js +++ b/apps/lcars/lcars.app.js @@ -567,7 +567,7 @@ function isWidtmrAvailable(){ try { WIDGETS["widtmr"].isStarted(); return true; - } catch { + } catch(e) { // In case the widtmr widget is not installed, the timer can // not be used... return false; diff --git a/apps/notanalog/notanalog.app.js b/apps/notanalog/notanalog.app.js index 8939a5a75..91381fe71 100644 --- a/apps/notanalog/notanalog.app.js +++ b/apps/notanalog/notanalog.app.js @@ -396,7 +396,7 @@ function isWidtmrAvailable(){ try { WIDGETS["widtmr"].isStarted(); return true; - } catch { + } catch(e) { // In case the widtmr widget is not installed, the timer can // not be used... return false;