Skip to content
Snippets Groups Projects
Unverified Commit da45b8b4 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix public timeline page not paginating correctly (#10245)

parent 65fffeac
No related branches found
No related tags found
No related merge requests found
......@@ -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 => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment