fixed connection table update on status filter change
This commit is contained in:
		
							parent
							
								
									606de67aa2
								
							
						
					
					
						commit
						3b77f95849
					
				
					 1 changed files with 6 additions and 3 deletions
				
			
		|  | @ -320,12 +320,15 @@ public final class ClientConnectionTable { | |||
|         if (!this.toDelete.isEmpty()) { | ||||
|             this.toDelete.forEach(id -> { | ||||
|                 final UpdatableTableItem item = this.tableMapping.remove(id); | ||||
|                 final List<Long> list = this.sessionIds.get(item.connectionData.clientConnection.userSessionId); | ||||
|                 if (list != null) { | ||||
|                     list.remove(id); | ||||
|                 if (item != null) { | ||||
|                     final List<Long> list = this.sessionIds.get(item.connectionData.clientConnection.userSessionId); | ||||
|                     if (list != null) { | ||||
|                         list.remove(id); | ||||
|                     } | ||||
|                 } | ||||
|             }); | ||||
|             this.statusFilterChanged = false; | ||||
|             this.toDelete.clear(); | ||||
|         } | ||||
| 
 | ||||
|         this.forceUpdateAll = false; | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 anhefti
						anhefti