fix a TB
This commit is contained in:
parent
ce71639c4f
commit
6a0113ac2a
1 changed files with 4 additions and 2 deletions
|
@ -971,8 +971,10 @@ class GroupchatWindow(chat.Chat):
|
|||
gajim.connections[self.account].send_gc_status(self.nicks[room_jid],
|
||||
room_jid, 'offline', 'offline')
|
||||
del self.nicks[room_jid]
|
||||
del gajim.gc_contacts[self.account][room_jid]
|
||||
del gajim.gc_connected[self.account][room_jid]
|
||||
# They can already be removed by the destroy function
|
||||
if gajim.gc_contacts[self.account].has_key(room_jid):
|
||||
del gajim.gc_contacts[self.account][room_jid]
|
||||
del gajim.gc_connected[self.account][room_jid]
|
||||
del self.list_treeview[room_jid]
|
||||
del self.subjects[room_jid]
|
||||
del self.name_labels[room_jid]
|
||||
|
|
Loading…
Add table
Reference in a new issue