Fix issue checking for last unread notification when there are gaps (#14960)
This commit is contained in:
		
							parent
							
								
									dac3e362fd
								
							
						
					
					
						commit
						dc52a778e1
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
					@ -172,7 +172,8 @@ const shouldCountUnreadNotifications = (state, ignoreScroll = false) => {
 | 
				
			||||||
  const isOnTop        = state.get('top');
 | 
					  const isOnTop        = state.get('top');
 | 
				
			||||||
  const isMounted      = state.get('mounted') > 0;
 | 
					  const isMounted      = state.get('mounted') > 0;
 | 
				
			||||||
  const lastReadId     = state.get('lastReadId');
 | 
					  const lastReadId     = state.get('lastReadId');
 | 
				
			||||||
  const lastItemReached = !state.get('hasMore') || lastReadId === '0' || (!state.get('items').isEmpty() && compareId(state.get('items').last().get('id'), lastReadId) <= 0);
 | 
					  const lastItem       = state.get('items').findLast(item => item !== null);
 | 
				
			||||||
 | 
					  const lastItemReached = !state.get('hasMore') || lastReadId === '0' || (lastItem && compareId(lastItem.get('id'), lastReadId) <= 0);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  return !(isTabVisible && (ignoreScroll || isOnTop) && isMounted && lastItemReached);
 | 
					  return !(isTabVisible && (ignoreScroll || isOnTop) && isMounted && lastItemReached);
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue