Skip to content
Snippets Groups Projects
Commit 53746b7f authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

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

parent 088b3870
No related branches found
No related tags found
No related merge requests found
......@@ -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)]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment