Fix crash when clicking “Show more/less for all” when a toot is not visible (#8118)
This commit is contained in:
		
							parent
							
								
									84e2446d26
								
							
						
					
					
						commit
						7b5ea7270d
					
				
					 1 changed files with 10 additions and 2 deletions
				
			
		|  | @ -49,11 +49,19 @@ export default function statuses(state = initialState, action) { | ||||||
|     return state.setIn([action.id, 'muted'], false); |     return state.setIn([action.id, 'muted'], false); | ||||||
|   case STATUS_REVEAL: |   case STATUS_REVEAL: | ||||||
|     return state.withMutations(map => { |     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: |   case STATUS_HIDE: | ||||||
|     return state.withMutations(map => { |     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: |   case TIMELINE_DELETE: | ||||||
|     return deleteStatus(state, action.id, action.references); |     return deleteStatus(state, action.id, action.references); | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue