Fix to showUserList in client.py

This commit is contained in:
Etoh 2013-06-11 21:35:47 +02:00
parent 3346372e7d
commit bcdf72ee06

View File

@ -579,7 +579,7 @@ class SyncplayUserlist(object):
rooms[user.room].append(user)
if(self.currentUser.room not in rooms):
rooms[self.currentUser.room] = []
rooms[user.room].append(self.currentUser)
rooms[self.currentUser.room].append(self.currentUser)
self.ui.showUserList(self.currentUser, rooms)