Ignore others failing to identify as room manager

This commit is contained in:
Et0h 2015-01-24 11:13:12 +00:00
parent 7aee87d6ef
commit 358c6c3610

View File

@ -543,7 +543,8 @@ class SyncplayClient(object):
self._protocol.requestControlledRoom(self.getRoom(), controlPassword)
def controllerIdentificationError(self, username, room):
self.ui.showErrorMessage(getMessage("failed-to-identify-as-controller-notification").format(username))
if username == self.getUsername():
self.ui.showErrorMessage(getMessage("failed-to-identify-as-controller-notification").format(username))
def controllerIdentificationSuccess(self, username, roomname):
self.userlist.setUserAsController(username)