From 358c6c361066e551f4171552018573085ac03521 Mon Sep 17 00:00:00 2001 From: Et0h Date: Sat, 24 Jan 2015 11:13:12 +0000 Subject: [PATCH] Ignore others failing to identify as room manager --- syncplay/client.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/syncplay/client.py b/syncplay/client.py index 7192e03..efe5a04 100644 --- a/syncplay/client.py +++ b/syncplay/client.py @@ -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)