error are also displayed in non-muc rooms. fixed #2028

This commit is contained in:
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 2010-11-24 05:55:36 +00:00
parent d3dc3ef251
commit e1ed45ae5f

View file

@ -85,7 +85,6 @@ class Core(object):
else RosterInfoTab(self)
default_tab.on_gain_focus()
self.tabs = [default_tab]
# self.roster = Roster()
# a unique buffer used to store global informations
# that are displayed in almost all tabs, in an
# information window.
@ -421,7 +420,7 @@ class Core(object):
# Differentiate both type of messages, and call the appropriate handler.
jid_from = message['from']
for tab in self.tabs:
if isinstance(tab, MucTab) and tab.get_name() == jid_from.bare: # check all the MUC we are in
if tab.get_name() == jid_from.full: # check all the MUC we are in
if message['type'] == 'error':
return self.room_error(message, tab.get_room().name)
else: