mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-01-10 17:25:35 +00:00
Warn http error
This commit is contained in:
parent
5e9b8eb571
commit
5c329c35f0
1 changed files with 2 additions and 1 deletions
|
@ -80,7 +80,8 @@ let StatusCache = new class {
|
||||||
}
|
}
|
||||||
this.submitStatusSuccess(form);
|
this.submitStatusSuccess(form);
|
||||||
})
|
})
|
||||||
.catch(_ => {
|
.catch(error => {
|
||||||
|
console.warn(error);
|
||||||
this.announceMessage('status-error-message');
|
this.announceMessage('status-error-message');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue