[Glitch] Fix public timeline page not paginating correctly
Port 3a435fa130 to glitch-soc
			
			
This commit is contained in:
		
							parent
							
								
									21366f9e05
								
							
						
					
					
						commit
						ac5169aa31
					
				
					 1 changed files with 7 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -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…
	
		Reference in a new issue