Fix crash when clearing uninitialized timeline (#9662)

th-downstream
ThibG 6 years ago committed by Eugen Rochko
parent bdc44c3558
commit cd5a929037

@ -88,7 +88,7 @@ const deleteStatus = (state, id, accountId, references) => {
}; };
const clearTimeline = (state, timeline) => { const clearTimeline = (state, timeline) => {
return state.updateIn([timeline, 'items'], list => list.clear()); return state.set(timeline, initialTimeline);
}; };
const filterTimelines = (state, relationship, statuses) => { const filterTimelines = (state, relationship, statuses) => {

Loading…
Cancel
Save