Fix tb when closing muc with unread messages

This commit is contained in:
Stephan Erb 2007-06-14 16:06:59 +00:00
parent 5f82f1a413
commit e22007f1d1
1 changed files with 1 additions and 1 deletions

View File

@ -143,8 +143,8 @@ class Events:
self.fire_event_removed(removed_list)
return
# no event nor type given, remove them all
del self._events[account][jid]
self.fire_event_removed(self._events[account][jid])
del self._events[account][jid]
def change_jid(self, account, old_jid, new_jid):
if not self._events[account].has_key(old_jid):