From c1a0633a1215987c9ec4c2c35e1ce137a0c11b95 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 25 Oct 2016 11:13:16 +0200 Subject: [PATCH] Guard against unexisting statuses rendering --- app/assets/javascripts/components/components/status.jsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/assets/javascripts/components/components/status.jsx b/app/assets/javascripts/components/components/status.jsx index 3fdb9a80c..1d1560003 100644 --- 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
; + } + if (status.get('reblog', null) !== null && typeof status.get('reblog') === 'object') { let displayName = status.getIn(['account', 'display_name']);