prevent TB when / in gc nicknames
This commit is contained in:
parent
a3a91eada6
commit
97420e6a7a
|
@ -210,7 +210,7 @@ class Contacts:
|
||||||
contacts = self.get_contacts_from_jid(account, jid)
|
contacts = self.get_contacts_from_jid(account, jid)
|
||||||
if not contacts and '/' in jid:
|
if not contacts and '/' in jid:
|
||||||
# jid may be a fake jid, try it
|
# jid may be a fake jid, try it
|
||||||
room, nick = jid.split('/')
|
room, nick = jid.split('/', 1)
|
||||||
contact = self.get_gc_contact(account, room, nick)
|
contact = self.get_gc_contact(account, room, nick)
|
||||||
return contact
|
return contact
|
||||||
return self.get_highest_prio_contact_from_contacts(contacts)
|
return self.get_highest_prio_contact_from_contacts(contacts)
|
||||||
|
|
Loading…
Reference in New Issue