From 3050ee7d719f6989ac9668a7758ed9659569d257 Mon Sep 17 00:00:00 2001 From: Uriziel Date: Sun, 16 Dec 2012 22:41:41 +0100 Subject: [PATCH] Different file message no longer appears if you're in different room --- syncplay/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncplay/client.py b/syncplay/client.py index 95b1198..0a831d0 100644 --- a/syncplay/client.py +++ b/syncplay/client.py @@ -356,7 +356,7 @@ class SyncplayUserlist(object): if(self.currentUser.room <> room or self.currentUser.username == username): message += " in room: '{}'".format(room) self.ui.showMessage(message) - if(self.currentUser.file and not self.currentUser.isFileSame(file_)): + if(self.currentUser.file and not self.currentUser.isFileSame(file_) and self.currentUser.room == room): message = "File you are playing appears to be different from <{}>'s".format(username) self.ui.showMessage(message) differences = []