Merge remote-tracking branch 'origin/patch-1.0.2' into development
This commit is contained in:
commit
f0351fe558
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