Fix unnecessary loadMore calls when the end of a timeline has been reached (#9581)

Fixes #9568
This commit is contained in:
ThibG 2018-12-19 22:23:16 +01:00 committed by Eugen Rochko
parent 5d724aa129
commit 8389b496ba

View file

@ -49,7 +49,7 @@ export default class ScrollableList extends PureComponent {
const { scrollTop, scrollHeight, clientHeight } = this.node;
const offset = scrollHeight - scrollTop - clientHeight;
if (400 > offset && this.props.onLoadMore && !this.props.isLoading) {
if (400 > offset && this.props.onLoadMore && this.props.hasMore && !this.props.isLoading) {
this.props.onLoadMore();
}