Browse Source

Remove auto-redirect to direct messages in web UI (#15142)

master
Eugen Rochko 3 years ago
committed by GitHub
parent
commit
f1858f08c2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions
  1. +1
    -3
      app/javascript/mastodon/actions/compose.js

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

@ -152,9 +152,7 @@ export function submitCompose(routerHistory) {
'Idempotency-Key': getState().getIn(['compose', 'idempotencyKey']),
},
}).then(function (response) {
if (response.data.visibility === 'direct' && getState().getIn(['conversations', 'mounted']) <= 0 && routerHistory) {
routerHistory.push('/timelines/direct');
} else if (routerHistory && routerHistory.location.pathname === '/statuses/new' && window.history.state) {
if (routerHistory && routerHistory.location.pathname === '/statuses/new' && window.history.state) {
routerHistory.goBack();
}

Loading…
Cancel
Save