prevent TB from previous commit
This commit is contained in:
parent
ba3ac3a592
commit
dc29f1d744
21
src/gajim.py
21
src/gajim.py
|
@ -397,17 +397,16 @@ class Interface:
|
|||
if not contact1:
|
||||
# presence of another resource of out jid
|
||||
if resource == gajim.connections[account].server_resource:
|
||||
resource = gajim.config.get_per('accounts', account, 'resource')
|
||||
else:
|
||||
contact1 = gajim.contacts.create_contact(jid = ji,
|
||||
name = gajim.nicks[account], groups = [],
|
||||
show = array[1], status = status_message, sub = 'both',
|
||||
ask = 'none', priority = priority, keyID = keyID,
|
||||
resource = resource)
|
||||
old_show = 0
|
||||
gajim.contacts.add_contact(account, contact1)
|
||||
lcontact.append(contact1)
|
||||
self.roster.add_self_contact(account)
|
||||
return
|
||||
contact1 = gajim.contacts.create_contact(jid = ji,
|
||||
name = gajim.nicks[account], groups = [],
|
||||
show = array[1], status = status_message, sub = 'both',
|
||||
ask = 'none', priority = priority, keyID = keyID,
|
||||
resource = resource)
|
||||
old_show = 0
|
||||
gajim.contacts.add_contact(account, contact1)
|
||||
lcontact.append(contact1)
|
||||
self.roster.add_self_contact(account)
|
||||
elif contact1.show in statuss:
|
||||
old_show = statuss.index(contact1.show)
|
||||
if (resources != [''] and (len(lcontact) != 1 or
|
||||
|
|
Loading…
Reference in New Issue