commit: c1a0633a1215987c9ec4c2c35e1ce137a0c11b95
parent: de50eff6acda8b28940cff9b955cfbded3c68b58
Author: Eugen Rochko <eugen@zeonfederated.com>
Date: Tue, 25 Oct 2016 11:13:16 +0200
Guard against unexisting statuses rendering
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/app/assets/javascripts/components/components/status.jsx b/app/assets/javascripts/components/components/status.jsx
@@ -45,6 +45,10 @@ const Status = React.createClass({
let media = '';
let { status, ...other } = this.props;
+ if (status === null) {
+ return <div />;
+ }
+
if (status.get('reblog', null) !== null && typeof status.get('reblog') === 'object') {
let displayName = status.getIn(['account', 'display_name']);