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.
This commit is contained in:
parent
2f6416db53
commit
14d7cf39f4
1 changed files with 4 additions and 0 deletions
|
@ -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…
Reference in a new issue