Browse Source

Fix the always-threaded bug

closed-social-glitch-2
Ondřej Hruška 6 years ago
parent
commit
53caab0c0b
No known key found for this signature in database GPG Key ID: 2C5FD5035250423D
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/javascript/flavours/glitch/reducers/compose.js

+ 1
- 1
app/javascript/flavours/glitch/reducers/compose.js 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);

Loading…
Cancel
Save