Fix public timeline page not paginating correctly (#10245)

main
Eugen Rochko 6 years ago committed by GitHub
parent 65fffeac3f
commit da45b8b4c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -60,9 +60,13 @@ class PublicTimeline extends React.PureComponent {
}
}
handleLoadMore = maxId => {
const { dispatch, local } = this.props;
dispatch(local ? expandCommunityTimeline({ maxId }) : expandPublicTimeline({ maxId }));
handleLoadMore = () => {
const { dispatch, statusIds, local } = this.props;
const maxId = statusIds.last();
if (maxId) {
dispatch(local ? expandCommunityTimeline({ maxId }) : expandPublicTimeline({ maxId }));
}
}
setRef = c => {

Loading…
Cancel
Save