Different file message no longer appears if you're in different room

This commit is contained in:
Uriziel 2012-12-16 22:41:41 +01:00
parent d9d6e685a2
commit 3050ee7d71
1 changed files with 1 additions and 1 deletions

View File

@ -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 = []