mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-23 04:55:08 +01:00
Fix public timeline page not paginating correctly (#10245)
This commit is contained in:
parent
65fffeac3f
commit
da45b8b4c9
@ -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 => {
|
||||||
|
Loading…
Reference in New Issue
Block a user