Fix crash on public hashtag pages when streaming fails (#10061)

This commit is contained in:
ThibG 2019-02-16 14:53:27 +01:00 committed by Eugen Rochko
parent 33e8fa0d76
commit e5f4af23ef
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ export default class DetailedStatus extends ImmutablePureComponent {
}
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 outerStyle = { boxSizing: 'border-box' };
const { compact } = this.props;