logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 50aaf4667f17a1e7cd5f834da184c62109314766
parent: 7e356503984e724d713e07191886a7ddc212a63a
Author: Eugen <eugen@zeonfederated.com>
Date:   Mon, 31 Oct 2016 01:27:19 +0100

Fix accounts not being normalized from context statuses

Diffstat:

Mapp/assets/javascripts/components/reducers/accounts.jsx6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/app/assets/javascripts/components/reducers/accounts.jsx b/app/assets/javascripts/components/reducers/accounts.jsx @@ -19,7 +19,10 @@ import { TIMELINE_UPDATE, TIMELINE_EXPAND_SUCCESS } from '../actions/timelines'; -import { STATUS_FETCH_SUCCESS } from '../actions/statuses'; +import { + STATUS_FETCH_SUCCESS, + CONTEXT_FETCH_SUCCESS +} from '../actions/statuses'; import Immutable from 'immutable'; const normalizeAccount = (state, account) => state.set(account.get('id'), account); @@ -66,6 +69,7 @@ export default function accounts(state = initialState, action) { case TIMELINE_EXPAND_SUCCESS: case ACCOUNT_TIMELINE_FETCH_SUCCESS: case ACCOUNT_TIMELINE_EXPAND_SUCCESS: + case CONTEXT_FETCH_SUCCESS: return normalizeAccountsFromStatuses(state, Immutable.fromJS(action.statuses)); case TIMELINE_UPDATE: case REBLOG_SUCCESS: