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

Fixes #9568
master
ThibG 5 years ago committed by Eugen Rochko
parent 5d724aa129
commit 8389b496ba
  1. 2
      app/javascript/mastodon/components/scrollable_list.js

@ -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();
}

Loading…
Cancel
Save