diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2020-11-11 05:36:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-11 05:36:22 +0100 |
commit | f1858f08c2422ad63f1e6acb1670fcf35e3f8d7d (patch) | |
tree | 5abb05c7d0c622c1cfead71e9ddb49213da2babe /app | |
parent | 462fb5451dcaa9113da8d5f873113ef6baab28ab (diff) |
Remove auto-redirect to direct messages in web UI (#15142)
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/mastodon/actions/compose.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app/javascript/mastodon/actions/compose.js b/app/javascript/mastodon/actions/compose.js index 030922520..891403969 100644 --- a/app/javascript/mastodon/actions/compose.js +++ b/app/javascript/mastodon/actions/compose.js @@ -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(); } |