[Glitch] Fix crash on public hashtag pages when streaming fails
Port 041ff5fa9a to glitch-soc
			
			
This commit is contained in:
		
							parent
							
								
									cac75e01b8
								
							
						
					
					
						commit
						e31fc2b458
					
				| 
						 | 
					@ -98,7 +98,7 @@ export default class DetailedStatus extends ImmutablePureComponent {
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  render () {
 | 
					  render () {
 | 
				
			||||||
    const status = this.props.status.get('reblog') ? this.props.status.get('reblog') : this.props.status;
 | 
					    const status = (this.props.status && this.props.status.get('reblog')) ? this.props.status.get('reblog') : this.props.status;
 | 
				
			||||||
    const { expanded, onToggleHidden, settings } = this.props;
 | 
					    const { expanded, onToggleHidden, settings } = this.props;
 | 
				
			||||||
    const outerStyle = { boxSizing: 'border-box' };
 | 
					    const outerStyle = { boxSizing: 'border-box' };
 | 
				
			||||||
    const { compact } = this.props;
 | 
					    const { compact } = this.props;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue