prevent another TB
This commit is contained in:
parent
b8505eec7e
commit
2554613339
|
@ -244,7 +244,10 @@ class GroupchatWindow(chat.Chat):
|
||||||
return iter
|
return iter
|
||||||
|
|
||||||
def get_role(self, room_jid, nick):
|
def get_role(self, room_jid, nick):
|
||||||
|
if self.contacts[room_jid].has_key(nick):
|
||||||
return self.contacts[room_jid][nick].role
|
return self.contacts[room_jid][nick].role
|
||||||
|
else:
|
||||||
|
return 'visitor'
|
||||||
|
|
||||||
def update_state_images(self):
|
def update_state_images(self):
|
||||||
roster = self.plugin.roster
|
roster = self.plugin.roster
|
||||||
|
|
Loading…
Reference in New Issue