forked from mirror/pixelfed
Update ComposeModal
This commit is contained in:
parent
fb742cf4db
commit
2befff8fd1
|
@ -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');
|
||||
|
|
Loading…
Reference in New Issue