logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: f3e5625d2de0d90545a4ee422311592042a4ded4
parent: fdd30af59510dbc5ffaabd2f262b9a993b6896c5
Author: Eugen Rochko <eugen@zeonfederated.com>
Date:   Tue, 18 Oct 2016 01:16:50 +0200

More debugging

Diffstat:

Mapp/assets/javascripts/components/components/status.jsx7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git 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) {