fixed deletion of empty table rows on status change

This commit is contained in:
anhefti 2020-08-12 16:44:43 +02:00
parent f324424b3e
commit cdf3b6d452

View file

@ -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);