Fix hasUnread on HashtagTimeline (#4644)
This commit is contained in:
		
							parent
							
								
									fe5b66aa08
								
							
						
					
					
						commit
						23792f5a7c
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -14,8 +14,8 @@ import { addColumn, removeColumn, moveColumn } from '../../actions/columns';
 | 
				
			||||||
import { FormattedMessage } from 'react-intl';
 | 
					import { FormattedMessage } from 'react-intl';
 | 
				
			||||||
import createStream from '../../stream';
 | 
					import createStream from '../../stream';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const mapStateToProps = state => ({
 | 
					const mapStateToProps = (state, props) => ({
 | 
				
			||||||
  hasUnread: state.getIn(['timelines', 'tag', 'unread']) > 0,
 | 
					  hasUnread: state.getIn(['timelines', `hashtag:${props.params.id}`, 'unread']) > 0,
 | 
				
			||||||
  streamingAPIBaseURL: state.getIn(['meta', 'streaming_api_base_url']),
 | 
					  streamingAPIBaseURL: state.getIn(['meta', 'streaming_api_base_url']),
 | 
				
			||||||
  accessToken: state.getIn(['meta', 'access_token']),
 | 
					  accessToken: state.getIn(['meta', 'access_token']),
 | 
				
			||||||
});
 | 
					});
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue