diff options
author | George Hazan <ghazan@miranda.im> | 2019-03-29 13:45:33 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-03-29 13:45:33 +0300 |
commit | d788b07db648f5b435e552943cdd5a7b20a4ea3c (patch) | |
tree | 8be31ce0b73448d1c2505cc76996e2c6665c7bf0 /protocols/JabberG/src/jabber_util.cpp | |
parent | cdfc49025d69584ec57adf7e1bc8f9b8542ffb48 (diff) |
merge with trunk
Diffstat (limited to 'protocols/JabberG/src/jabber_util.cpp')
-rwxr-xr-x | protocols/JabberG/src/jabber_util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_util.cpp b/protocols/JabberG/src/jabber_util.cpp index 30f4137d68..1d946f6a90 100755 --- a/protocols/JabberG/src/jabber_util.cpp +++ b/protocols/JabberG/src/jabber_util.cpp @@ -372,7 +372,7 @@ void CJabberProto::SendPresenceTo(int status, const char *to, const TiXmlElement p << XATTR("to", to);
if (extra)
- p.InsertEndChild(extra->DeepClone(&p)->ToElement());
+ p += extra;
// XEP-0115:Entity Capabilities
if (m_bAllowVersionRequests) {
|