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

@ -958,7 +958,7 @@ class UpdateDeckTask extends SwingWorker<Void, Void> {
@Override
protected Void doInBackground() throws Exception {
while (!isCancelled()) {
session.updateDeck(tableId, deck.getDeckCardLists());
SessionHandler.updateDeck(tableId, deck.getDeckCardLists());
Thread.sleep(5000);
}
return null;