Skip to content
Snippets Groups Projects
Commit 041ff5fa authored by ThibG's avatar ThibG Committed by Eugen Rochko
Browse files

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

parent ea7ad59a
No related branches found
No related tags found
No related merge requests found
......@@ -87,7 +87,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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment