mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
[Glitch] Fix public timeline page not paginating correctly
Port da45b8b4c9
to glitch-soc
This commit is contained in:
parent
bbb9ff0e84
commit
458db4333a
@ -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