Browse Source

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

pull/4/head
ThibG 5 years ago
committed by Eugen Rochko
parent
commit
041ff5fa9a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/javascript/mastodon/features/status/components/detailed_status.js

+ 1
- 1
app/javascript/mastodon/features/status/components/detailed_status.js View File

@ -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;

Loading…
Cancel
Save