Change language to be carried over on reply (#18557)

In most cases, replies to a toot are written in the same language as the
toot being replied to.
local
Claire 2 years ago committed by GitHub
parent 2f6416db53
commit 14d7cf39f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      app/javascript/mastodon/reducers/compose.js

@ -328,6 +328,10 @@ export default function compose(state = initialState, action) {
map.set('preselectDate', new Date());
map.set('idempotencyKey', uuid());
if (action.status.get('language')) {
map.set('language', action.status.get('language'));
}
if (action.status.get('spoiler_text').length > 0) {
map.set('spoiler', true);
map.set('spoiler_text', action.status.get('spoiler_text'));

Loading…
Cancel
Save