We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5b2b0c commit 3bd9bc4Copy full SHA for 3bd9bc4
1 file changed
app/javascript/mastodon/features/status/components/detailed_status.js
@@ -87,7 +87,7 @@ export default class DetailedStatus extends ImmutablePureComponent {
87
}
88
89
render () {
90
- 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;
91
const outerStyle = { boxSizing: 'border-box' };
92
const { compact } = this.props;
93
0 commit comments