bugfix: show id 'chat', not 'free'

This commit is contained in:
Yann Leboulanger 2005-05-30 09:50:14 +00:00
parent 088b3870dd
commit 53746b7ffb
1 changed files with 1 additions and 1 deletions

View File

@ -1390,7 +1390,7 @@ class Roster_window:
jid2 = model.get_value(iter2, 3)
luser1 = self.contacts[account][jid1]
luser2 = self.contacts[account][jid2]
cshow = {'online':0, 'free': 1, 'away':2, 'xa':3, 'dnd':4,
cshow = {'online':0, 'chat': 1, 'away':2, 'xa':3, 'dnd':4,
'invisible':5, 'offline':6, 'error':7}
show1 = cshow[self.get_show(luser1)]
show2 = cshow[self.get_show(luser2)]