Fix the always-threaded bug

This commit is contained in:
Ondřej Hruška 2018-01-06 19:55:53 +01:00
parent b75a1ce326
commit 53caab0c0b
No known key found for this signature in database
GPG Key ID: 2C5FD5035250423D
1 changed files with 1 additions and 1 deletions

View File

@ -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);