[Glitch] Fix unread notification count when polling
Port 92f1d739b554b6d5496013fb50196a14434943e2 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
		
							parent
							
								
									bb0c9fcde7
								
							
						
					
					
						commit
						1a591ffc8b
					
				@ -112,7 +112,7 @@ const expandNormalizedNotifications = (state, notifications, next, isLoadingRece
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (shouldCountUnreadNotifications(state)) {
 | 
					    if (shouldCountUnreadNotifications(state)) {
 | 
				
			||||||
      mutable.update('unread', unread => unread + items.count(item => compareId(item.get('id'), lastReadId) > 0));
 | 
					      mutable.set('unread', mutable.get('pendingItems').count(item => item !== null) + mutable.get('items').count(item => item && compareId(item.get('id'), lastReadId) > 0));
 | 
				
			||||||
    } else {
 | 
					    } else {
 | 
				
			||||||
      const mostRecent = items.find(item => item !== null);
 | 
					      const mostRecent = items.find(item => item !== null);
 | 
				
			||||||
      if (mostRecent && compareId(lastReadId, mostRecent.get('id')) < 0) {
 | 
					      if (mostRecent && compareId(lastReadId, mostRecent.get('id')) < 0) {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user