logo

mastofe

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

Will this fix the issue?

Diffstat:

Mapp/assets/javascripts/components/components/status.jsx2--
Mapp/assets/javascripts/components/selectors/index.jsx11++++++++---
2 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/app/assets/javascripts/components/components/status.jsx b/app/assets/javascripts/components/components/status.jsx @@ -45,8 +45,6 @@ const Status = React.createClass({ var { status, ...other } = this.props; - console.log(status, this.props); - if (status.get('reblog') !== null) { let displayName = status.getIn(['account', 'display_name']); diff --git a/app/assets/javascripts/components/selectors/index.jsx b/app/assets/javascripts/components/selectors/index.jsx @@ -29,15 +29,20 @@ const getAccountTimelineIds = (state, id) => state.getIn(['timelines', 'accounts const assembleStatus = (id, statuses, accounts) => { let status = statuses.get(id, null); + let reblog = null; if (status === null) { return null; } - let reblog = statuses.get(status.get('reblog'), null); + if (status.get('reblog', null) !== null) { + reblog = statuses.get(status.get('reblog'), null); - if (reblog !== null) { - reblog = reblog.set('account', accounts.get(reblog.get('account'))); + if (reblog !== null) { + reblog = reblog.set('account', accounts.get(reblog.get('account'))); + } else { + return null; + } } return status.set('reblog', reblog).set('account', accounts.get(status.get('account')));