From: Eugen Rochko Date: Mon, 17 Oct 2016 23:16:50 +0000 (+0200) Subject: More debugging X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=f3e5625d2de0d90545a4ee422311592042a4ded4;p=mastodon.git More debugging --- diff --git a/app/assets/javascripts/components/components/status.jsx b/app/assets/javascripts/components/components/status.jsx index d3acff3f0..6e4c9651d 100644 --- a/app/assets/javascripts/components/components/status.jsx +++ b/app/assets/javascripts/components/components/status.jsx @@ -41,11 +41,12 @@ const Status = React.createClass({ }, render () { - var media = ''; + let media = ''; + let { status, ...other } = this.props; - var { status, ...other } = this.props; + if (status.get('reblog', null) !== null) { + console.log(status.get('id'), status.get('reblog')); - if (status.get('reblog') !== null) { let displayName = status.getIn(['account', 'display_name']); if (displayName.length === 0) {