diff --git a/app/javascript/flavours/glitch/features/standalone/public_timeline/index.js b/app/javascript/flavours/glitch/features/standalone/public_timeline/index.js index 079f62f80cb..5e2b3fc6d76 100644 --- a/app/javascript/flavours/glitch/features/standalone/public_timeline/index.js +++ b/app/javascript/flavours/glitch/features/standalone/public_timeline/index.js @@ -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 => {