From ee770c3fd3bc0eb908791eecfaff0fa01f4fc1ce Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 18 Sep 2016 18:38:44 +0200 Subject: Live update account timelines, small fix for replyCompose --- app/assets/javascripts/components/reducers/timelines.jsx | 1 + 1 file changed, 1 insertion(+) (limited to 'app/assets/javascripts/components/reducers') diff --git a/app/assets/javascripts/components/reducers/timelines.jsx b/app/assets/javascripts/components/reducers/timelines.jsx index 7fd29c812..04a49e16d 100644 --- a/app/assets/javascripts/components/reducers/timelines.jsx +++ b/app/assets/javascripts/components/reducers/timelines.jsx @@ -101,6 +101,7 @@ function accountTimelineToMaps(state, accountId, statuses) { function updateTimelineWithMaps(state, timeline, status) { state = statusToMaps(state, status); state = state.update(timeline, list => list.unshift(status.get('id'))); + state = state.updateIn(['accounts_timelines', status.getIn(['account', 'id'])], Immutable.List(), list => list.unshift(status.get('id'))); return state; }; -- cgit