Fix another error handling regression

This commit is contained in:
Franz Liedke 2015-11-05 14:17:48 +01:00
parent 439b867dde
commit 0bdf873e65

View File

@ -91,7 +91,10 @@ export default class UserBio extends Component {
if (user.bio() !== value) {
this.loading = true;
user.save({bio: value}).finally(this.loaded.bind(this));
user.save({bio: value}).finally(() => {
this.loading = false;
m.redraw();
});
}
this.editing = false;