Update ComposeModal

This commit is contained in:
Daniel Supernault 2021-12-22 00:47:33 -07:00
parent fb742cf4db
commit 2befff8fd1
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 5 additions and 1 deletions

View File

@ -1259,7 +1259,11 @@ export default {
axios.post('/api/compose/v0/publish', data)
.then(res => {
let data = res.data;
window.location.href = data;
if(location.pathname === '/i/web/compose') {
location.href = '/i/web/post/' + data.split('/').at(-1);
} else {
location.href = data;
}
}).catch(err => {
let msg = err.response.data.message ? err.response.data.message : 'An unexpected error occured.'
swal('Oops, something went wrong!', msg, 'error');