fix account tooltip

This commit is contained in:
Yann Leboulanger 2005-11-14 10:24:38 +00:00
parent f5bd526129
commit df6474ec3b

View file

@ -748,10 +748,14 @@ class RosterWindow:
# get our current contact info # get our current contact info
contact = Contact(jid = jid, name = account, contact = Contact(jid = jid, name = account,
show = connection.get_status(), show = connection.get_status(),
sub = 'both',
status = connection.status, status = connection.status,
resource=gajim.config.get_per('accounts', connection.name, 'resource'), resource = gajim.config.get_per('accounts', connection.name,
priority=gajim.config.get_per('accounts', connection.name, 'priority'), 'resource'),
keyID=gajim.config.get_per('accounts', connection.name, 'keyid')) priority = gajim.config.get_per('accounts', connection.name,
'priority'),
keyID = gajim.config.get_per('accounts', connection.name,
'keyid'))
contacts.append(contact) contacts.append(contact)
# if we're online ... # if we're online ...
if connection.connection: if connection.connection: