Fix crash when clicking “Show more/less for all” when a toot is not visible (#8118)

This commit is contained in:
Mélanie Chauvel (ariasuni) 2018-08-11 11:52:53 +02:00 committed by Eugen Rochko
parent 84e2446d26
commit 7b5ea7270d
1 changed files with 10 additions and 2 deletions

View File

@ -49,11 +49,19 @@ export default function statuses(state = initialState, action) {
return state.setIn([action.id, 'muted'], false);
case STATUS_REVEAL:
return state.withMutations(map => {
action.ids.forEach(id => map.setIn([id, 'hidden'], false));
action.ids.forEach(id => {
if (!(state.get(id) === undefined)) {
map.setIn([id, 'hidden'], false);
}
});
});
case STATUS_HIDE:
return state.withMutations(map => {
action.ids.forEach(id => map.setIn([id, 'hidden'], true));
action.ids.forEach(id => {
if (!(state.get(id) === undefined)) {
map.setIn([id, 'hidden'], true);
}
});
});
case TIMELINE_DELETE:
return deleteStatus(state, action.id, action.references);