add two more possible statuses - #1945

This commit is contained in:
Dimitur Kirov 2006-05-09 19:56:29 +00:00
parent a898cf4544
commit d8bf9f69a8
1 changed files with 1 additions and 1 deletions

View File

@ -327,7 +327,7 @@ class Contacts:
if not common.gajim.jid_is_transport(jid):
score += contact.priority*10
score += ['not in roster', 'error', 'offline', 'invisible', 'dnd', 'xa',
'away', 'chat', 'online'].index(contact.show)
'away', 'chat', 'online', 'requested', 'message'].index(contact.show)
return score
def get_metacontacts_big_brother(self, family):