From 9b213023725a9686ad5027bc003552930373e927 Mon Sep 17 00:00:00 2001 From: Uriziel Date: Thu, 13 Jun 2013 20:37:22 +0200 Subject: [PATCH] Fixed userlist not refreshing properly in isolation mode. --- syncplay/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/syncplay/client.py b/syncplay/client.py index 14373b0..fe59d1b 100644 --- a/syncplay/client.py +++ b/syncplay/client.py @@ -304,13 +304,13 @@ class SyncplayClient(object): def setRoom(self, roomName): self.userlist.currentUser.room = roomName - self.getUserList() def sendRoom(self): room = self.userlist.currentUser.room if(self._protocol and self._protocol.logged and room): self._protocol.sendRoomSetting(room) - + self.getUserList() + def getRoom(self): return self.userlist.currentUser.room