diff options
-rw-r--r-- | protocols/JabberG/src/jabber_iqid.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_iqid.cpp b/protocols/JabberG/src/jabber_iqid.cpp index e41da8181e..fb83d3fafd 100644 --- a/protocols/JabberG/src/jabber_iqid.cpp +++ b/protocols/JabberG/src/jabber_iqid.cpp @@ -632,7 +632,7 @@ void CJabberProto::OnIqResultGetVcard(const TiXmlElement *iqNode, CJabberIqInfo* const char *type, *jid;
if ((type = XmlGetAttr(iqNode, "type")) == nullptr) return;
- if ((jid = XmlGetAttr(iqNode, "from")) == nullptr) return;
+ if ((jid = XmlGetAttr(iqNode, "from")) == nullptr) jid = m_szJabberJID;
int id = JabberGetPacketID(iqNode);
if (id == m_nJabberSearchID) {
|