Merge pull request #519 from ThibG/glitch-soc/fixes/status-node-null

Prevent a rare crash when a status' root node is undefined
th-downstream
David Yip 7 years ago committed by GitHub
commit 1a0491b3cf

@ -153,6 +153,11 @@ export default class Status extends ImmutablePureComponent {
muted,
prepend,
} = this.props;
// Prevent a crash when node is undefined. Not completely sure why this
// happens, might be because status === null.
if (node === undefined) return;
const autoCollapseSettings = settings.getIn(['collapsed', 'auto']);
if (function () {

Loading…
Cancel
Save