Browse Source

When posting in mobile mode, go back to previous history location (#9502)

Fixes #7112
pull/4/head
ThibG 5 years ago
committed by Eugen Rochko
parent
commit
aa7a8a3031
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      app/javascript/mastodon/actions/compose.js

+ 5
- 1
app/javascript/mastodon/actions/compose.js View File

@ -144,7 +144,11 @@ export function submitCompose(routerHistory) {
if (response.data.visibility === 'direct' && getState().getIn(['conversations', 'mounted']) <= 0 && routerHistory) {
routerHistory.push('/timelines/direct');
} else if (response.data.visibility !== 'direct') {
} else if (routerHistory && routerHistory.location.pathname === '/statuses/new' && window.history.state) {
routerHistory.goBack();
}
if (response.data.visibility !== 'direct') {
insertIfOnline('home');
}

Loading…
Cancel
Save