th: compose reducer: fix cancelling reply/quote

lolsob-rspec
Ariadne Conill 2022-12-26 05:39:30 +00:00
parent 4fbe5826ca
commit ae8bba21dc
1 changed files with 2 additions and 2 deletions

View File

@ -442,8 +442,6 @@ export default function compose(state = initialState, action) {
map.set('spoiler_text', '');
}
});
case COMPOSE_REPLY_CANCEL:
state = state.setIn(['advanced_options', 'threaded_mode'], false);
case COMPOSE_QUOTE:
return state.withMutations(map => {
map.set('id', null);
@ -460,6 +458,8 @@ export default function compose(state = initialState, action) {
map.set('preselectDate', new Date());
map.set('idempotencyKey', uuid());
});
case COMPOSE_REPLY_CANCEL:
state = state.setIn(['advanced_options', 'threaded_mode'], false);
case COMPOSE_QUOTE_CANCEL:
case COMPOSE_RESET:
return state.withMutations(map => {