mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-24 05:48:07 +01:00
Disable threaded mode when canceling a reply (fixes #583)
This commit is contained in:
parent
c44579c42d
commit
552b4d9a5f
1 changed files with 1 additions and 0 deletions
|
@ -297,6 +297,7 @@ export default function compose(state = initialState, action) {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
case COMPOSE_REPLY_CANCEL:
|
case COMPOSE_REPLY_CANCEL:
|
||||||
|
state = state.setIn(['advanced_options', 'threaded_mode'], false);
|
||||||
case COMPOSE_RESET:
|
case COMPOSE_RESET:
|
||||||
return state.withMutations(map => {
|
return state.withMutations(map => {
|
||||||
map.set('in_reply_to', null);
|
map.set('in_reply_to', null);
|
||||||
|
|
Loading…
Reference in a new issue