fixed deletion of empty table rows on status change
This commit is contained in:
parent
f324424b3e
commit
cdf3b6d452
1 changed files with 1 additions and 1 deletions
|
@ -317,7 +317,7 @@ public final class ClientConnectionTable {
|
|||
}
|
||||
});
|
||||
|
||||
if (this.statusFilterChanged && !this.toDelete.isEmpty()) {
|
||||
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);
|
||||
|
|
Loading…
Reference in a new issue