On mobile, go back in browser history upon posting, unless threaded mode is enabled
This commit is contained in:
parent
35b2ba5030
commit
f0505a5b2e
2 changed files with 17 additions and 7 deletions
|
@ -116,7 +116,7 @@ export function directCompose(account, router) {
|
|||
};
|
||||
};
|
||||
|
||||
export function submitCompose() {
|
||||
export function submitCompose(routerHistory) {
|
||||
return function (dispatch, getState) {
|
||||
let status = getState().getIn(['compose', 'text'], '');
|
||||
let media = getState().getIn(['compose', 'media_attachments']);
|
||||
|
@ -158,6 +158,12 @@ export function submitCompose() {
|
|||
}
|
||||
};
|
||||
|
||||
if (routerHistory && routerHistory.location.pathname === '/statuses/new'
|
||||
&& window.history.state
|
||||
&& !getState().getIn(['compose', 'advanced_options', 'threaded_mode'])) {
|
||||
routerHistory.goBack();
|
||||
}
|
||||
|
||||
insertIfOnline('home');
|
||||
|
||||
if (response.data.in_reply_to_id === null && response.data.visibility === 'public') {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue