Browse Source

[Glitch] Fix public timeline page not paginating correctly

Port da45b8b4c9 to glitch-soc
closed-social-glitch-2
Eugen Rochko 5 years ago
committed by Thibaut Girka
parent
commit
458db4333a
1 changed files with 7 additions and 3 deletions
  1. +7
    -3
      app/javascript/flavours/glitch/features/standalone/public_timeline/index.js

+ 7
- 3
app/javascript/flavours/glitch/features/standalone/public_timeline/index.js View File

@ -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