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

request vcard to full jid if we know it. fixes #3054

parent 81699604
No related branches found
No related tags found
No related merge requests found
......@@ -1950,6 +1950,9 @@ class GroupchatControl(ChatControlBase):
'''Call vcard_information_window class to display user's information'''
c = gajim.contacts.get_gc_contact(self.account, self.room_jid, nick)
c2 = gajim.contacts.contact_from_gc_contact(c)
if c.jid:
c2.jid = c.jid
c2.resource = c.resource
if gajim.interface.instances[self.account]['infos'].has_key(c2.jid):
gajim.interface.instances[self.account]['infos'][c2.jid].window.\
present()
......
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