From c82a48bfbb102a272ae18d7fa65dbfcbb969b926 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Tue, 20 Oct 2015 22:07:08 +1030 Subject: [PATCH] Revert error handling regression --- framework/core/js/forum/src/components/NotificationList.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/framework/core/js/forum/src/components/NotificationList.js b/framework/core/js/forum/src/components/NotificationList.js index 53e97b1e6..a9a970604 100644 --- a/framework/core/js/forum/src/components/NotificationList.js +++ b/framework/core/js/forum/src/components/NotificationList.js @@ -120,7 +120,10 @@ export default class NotificationList extends Component { app.session.user.pushAttributes({newNotificationsCount: 0}); app.cache.notifications = notifications.sort((a, b) => b.time() - a.time()); }) - .finally(this.loaded.bind(this)); + .finally(() => { + this.loading = false; + m.redraw(); + }); } /**