From 09424942a05c89aab9cf9420763d9287a4225cee Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Thu, 30 Jun 2016 20:09:37 +0530 Subject: [PATCH] fix(GUI): uncaught exception in update notifier (#541) Since the addition of Redux and ImmutableJS data structures, we store the application settings in the Redux store. This means that checkboxes on templates can no longer bind to the setting properties directly. This was fixed in the setting page, but we missed one of them in the update notifier model. ```html ng-model="modal.settings.get('sleepUpdateCheck')" ``` Won't lead any meaningful return, and in fact, throws an uncaught exception. Changelog-Entry: Fix uncaught exception when showing the update notifier modal. Change-Type: patch Signed-off-by: Juan Cruz Viotti --- .../update-notifier/templates/update-notifier-modal.tpl.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/gui/components/update-notifier/templates/update-notifier-modal.tpl.html b/lib/gui/components/update-notifier/templates/update-notifier-modal.tpl.html index 683f713c..02f1b927 100644 --- a/lib/gui/components/update-notifier/templates/update-notifier-modal.tpl.html +++ b/lib/gui/components/update-notifier/templates/update-notifier-modal.tpl.html @@ -13,7 +13,9 @@