fix invite contact list. Fixes #7422
This commit is contained in:
parent
8562d66d53
commit
7831ab6c29
|
@ -4973,7 +4973,7 @@ class TransformChatToMUC:
|
||||||
contact.jid != gajim.get_jid_from_account(self.account) and
|
contact.jid != gajim.get_jid_from_account(self.account) and
|
||||||
contact.jid not in gajim.interface.minimized_controls[account] and
|
contact.jid not in gajim.interface.minimized_controls[account] and
|
||||||
not contact.is_transport() and
|
not contact.is_transport() and
|
||||||
not contact_transport)
|
contact_transport in ('jabber', None))
|
||||||
|
|
||||||
# set jabber id and pseudos
|
# set jabber id and pseudos
|
||||||
for account in gajim.contacts.get_accounts():
|
for account in gajim.contacts.get_accounts():
|
||||||
|
@ -4985,7 +4985,7 @@ class TransformChatToMUC:
|
||||||
contact_transport = gajim.get_transport_name_from_jid(jid)
|
contact_transport = gajim.get_transport_name_from_jid(jid)
|
||||||
# Add contact if it can be invited
|
# Add contact if it can be invited
|
||||||
if invitable(contact, contact_transport) and \
|
if invitable(contact, contact_transport) and \
|
||||||
contact.show not in ('offline', 'error'):
|
contact.show not in ('offline', 'error'):
|
||||||
img = gajim.interface.jabber_state_images['16'][contact.show]
|
img = gajim.interface.jabber_state_images['16'][contact.show]
|
||||||
name = contact.name
|
name = contact.name
|
||||||
if name == '':
|
if name == '':
|
||||||
|
|
Loading…
Reference in New Issue