mirror of
https://github.com/flarum/framework.git
synced 2025-03-03 22:51:55 +08:00
Revert error handling regression
This commit is contained in:
parent
a9eb62880e
commit
067552efe5
@ -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();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user