Only show unreads below indicator after first load is complete (#6874)

Этот коммит содержится в:
Joram Wilander
2017-07-07 19:27:13 -04:00
коммит произвёл Saturnino Abril
родитель 61adde5112
Коммит e8c02c7c1d

Просмотреть файл

@@ -152,7 +152,7 @@ export default class PostList extends React.PureComponent {
return;
}
if (!this.wasAtBottom() && this.props.posts !== nextProps.posts) {
if (!this.wasAtBottom() && this.props.posts !== nextProps.posts && this.hasScrolledToNewMessageSeparator) {
const unViewedCount = nextProps.posts.reduce((count, post) => {
if (post.create_at > this.state.lastViewed &&
post.user_id !== nextProps.currentUserId &&