logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 7bb72ff198d9fb0747f8ded25140be35943484a0
parent: b62c31306e5e9670b8b285ea5885a15f59ec089b
Author: Eugen Rochko <eugen@zeonfederated.com>
Date:   Tue, 18 Oct 2016 01:48:46 +0200

Small clean up

Diffstat:

Mapp/assets/javascripts/components/reducers/timelines.jsx6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/app/assets/javascripts/components/reducers/timelines.jsx b/app/assets/javascripts/components/reducers/timelines.jsx @@ -78,12 +78,14 @@ function normalizeStatus(state, status) { }; function normalizeTimeline(state, timeline, statuses) { + let ids = Immutable.List([]); + statuses.forEach((status, i) => { state = normalizeStatus(state, status); - state = state.setIn([timeline, i], status.get('id')); + ids = ids.set(i, status.get('id')); }); - return state; + return state.set(timeline, ids); }; function appendNormalizedTimeline(state, timeline, statuses) {