From: Ondřej Hruška Date: Sat, 6 Jan 2018 18:55:53 +0000 (+0100) Subject: Fix the always-threaded bug X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=53caab0c0bff48e7b23bc3e8dd5505345a2f263a;p=mastodon.git Fix the always-threaded bug --- 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);