[Glitch] Fix public timeline page not paginating correctly

Port da45b8b4c9 to glitch-soc
signup-info-prompt
Eugen Rochko 2019-03-12 21:53:56 +01:00 committed by Thibaut Girka
parent bbb9ff0e84
commit 458db4333a
1 changed files with 7 additions and 3 deletions

View File

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