diff options
author | Ondřej Hruška <ondra@ondrovo.com> | 2018-01-06 19:55:53 +0100 |
---|---|---|
committer | Ondřej Hruška <ondra@ondrovo.com> | 2018-01-06 19:55:53 +0100 |
commit | 53caab0c0bff48e7b23bc3e8dd5505345a2f263a (patch) | |
tree | 375864c6c5657a7532feef520537e3c863f67c24 /app/javascript/flavours/glitch | |
parent | b75a1ce326908392ad833ac71709263f0d0a12d5 (diff) |
Fix the always-threaded bug
Diffstat (limited to 'app/javascript/flavours/glitch')
-rw-r--r-- | app/javascript/flavours/glitch/reducers/compose.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/reducers/compose.js b/app/javascript/flavours/glitch/reducers/compose.js index 610cc9446..f341977b7 100644 --- a/app/javascript/flavours/glitch/reducers/compose.js +++ b/app/javascript/flavours/glitch/reducers/compose.js @@ -298,7 +298,7 @@ export default function compose(state = initialState, action) { case COMPOSE_UPLOAD_CHANGE_REQUEST: return state.set('is_submitting', true); case COMPOSE_SUBMIT_SUCCESS: - return action.status && state.get('advanced_options', 'threaded_mode') ? continueThread(state, action.status) : clearAll(state); + return action.status && state.getIn(['advanced_options', 'threaded_mode']) ? continueThread(state, action.status) : clearAll(state); case COMPOSE_SUBMIT_FAIL: case COMPOSE_UPLOAD_CHANGE_FAIL: return state.set('is_submitting', false); |