From 7bb72ff198d9fb0747f8ded25140be35943484a0 Mon Sep 17 00:00:00 2001
From: Eugen Rochko <eugen@zeonfederated.com>
Date: Tue, 18 Oct 2016 01:48:46 +0200
Subject: [PATCH] Small clean up

---
 app/assets/javascripts/components/reducers/timelines.jsx | 6 ++++--
 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
index b6a14a6491..65bccb44d8 100644
--- 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) {
-- 
GitLab