Fix crash when clearing uninitialized timeline (#9662)
This commit is contained in:
		
							parent
							
								
									290932602b
								
							
						
					
					
						commit
						e74c99edf5
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -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…
	
	Add table
		
		Reference in a new issue