Revert error handling regression

This commit is contained in:
Toby Zerner 2015-10-20 22:07:08 +10:30
parent ebb4623223
commit c82a48bfbb

View File

@ -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();
});
}
/**