Browse Source

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

pull/4/head
Mélanie Chauvel (ariasuni) 5 years ago
committed by Eugen Rochko
parent
commit
7b5ea7270d
1 changed files with 10 additions and 2 deletions
  1. +10
    -2
      app/javascript/mastodon/reducers/statuses.js

+ 10
- 2
app/javascript/mastodon/reducers/statuses.js 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);

Loading…
Cancel
Save