Reset language to default when cancelling a reply (#2114)
When cancelling a reply, the language was still set to the language of the replied to toot. Signed-off-by: Plastikmensch <plastikmensch@users.noreply.github.com>pull/59/head^2
parent
3fb7fe14c6
commit
179e38cf15
|
@ -457,6 +457,7 @@ export default function compose(state = initialState, action) {
|
||||||
map.set('privacy', state.get('default_privacy'));
|
map.set('privacy', state.get('default_privacy'));
|
||||||
map.set('id', null);
|
map.set('id', null);
|
||||||
map.set('poll', null);
|
map.set('poll', null);
|
||||||
|
map.set('language', state.get('default_language'));
|
||||||
map.update(
|
map.update(
|
||||||
'advanced_options',
|
'advanced_options',
|
||||||
map => map.mergeWith(overwrite, state.get('default_advanced_options')),
|
map => map.mergeWith(overwrite, state.get('default_advanced_options')),
|
||||||
|
|
Loading…
Reference in New Issue