added some missing session references

This commit is contained in:
ingmargoudt 2016-09-16 08:58:02 +02:00
parent 1b5d697b33
commit 71398d6d83
7 changed files with 28 additions and 16 deletions

View file

@ -432,7 +432,7 @@ class UpdateSeatsTask extends SwingWorker<Void, TableView> {
@Override
protected Void doInBackground() throws Exception {
while (!isCancelled()) {
this.publish(session.getTable(roomId, tableId));
this.publish(SessionHandler.getTable(roomId, tableId));
Thread.sleep(1000);
}
return null;