Merge pull request #519 from ThibG/glitch-soc/fixes/status-node-null
Prevent a rare crash when a status' root node is undefinedremotes/1727458204337373841/tmp_refs/heads/signup-info-prompt
commit
cfdbb36bdf
|
@ -153,6 +153,11 @@ export default class Status extends ImmutablePureComponent {
|
||||||
muted,
|
muted,
|
||||||
prepend,
|
prepend,
|
||||||
} = this.props;
|
} = 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']);
|
const autoCollapseSettings = settings.getIn(['collapsed', 'auto']);
|
||||||
|
|
||||||
if (function () {
|
if (function () {
|
||||||
|
|
Loading…
Reference in New Issue