summaryrefslogtreecommitdiff
path: root/protocols/JabberG/src/jabber_util.cpp
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss@sss.chaoslab.ru>2016-10-19 20:28:16 +0300
committerGluzskiy Alexandr <sss@sss.chaoslab.ru>2016-10-19 20:28:16 +0300
commit072bfe7969fded36f765cc14185879ccbc90c8b6 (patch)
tree3f821f0bdd6f0e19f9ff1eba4bd9319f649f40d6 /protocols/JabberG/src/jabber_util.cpp
parentde812d7c8e61a45025a498fd23b7d7502cf0e866 (diff)
jabber id remake
Diffstat (limited to 'protocols/JabberG/src/jabber_util.cpp')
-rwxr-xr-x[-rw-r--r--]protocols/JabberG/src/jabber_util.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/JabberG/src/jabber_util.cpp b/protocols/JabberG/src/jabber_util.cpp
index c2083fb050..e8525a9478 100644..100755
--- a/protocols/JabberG/src/jabber_util.cpp
+++ b/protocols/JabberG/src/jabber_util.cpp
@@ -384,11 +384,11 @@ void CJabberProto::SendPresenceTo(int status, const wchar_t* to, HXML extra, con
XmlAddChild(p, extra);
// XEP-0115:Entity Capabilities
- HXML c = p << XCHILDNS(L"c", JABBER_FEAT_ENTITY_CAPS) << XATTR(L"node", JABBER_CAPS_MIRANDA_NODE)
+ HXML c = p << XCHILDNS(L"c", JABBER_FEAT_ENTITY_CAPS) << XATTR(L"node", L"http://client/caps")
<< XATTR(L"ver", szCoreVersion);
LIST<wchar_t> arrExtCaps(5);
- if (bSecureIM)
+/* if (bSecureIM)
arrExtCaps.insert(JABBER_EXT_SECUREIM);
if (bMirOTR)
@@ -400,7 +400,7 @@ void CJabberProto::SendPresenceTo(int status, const wchar_t* to, HXML extra, con
if (bPlatform)
arrExtCaps.insert(JABBER_EXT_PLATFORMX64);
else
- arrExtCaps.insert(JABBER_EXT_PLATFORMX86);
+ arrExtCaps.insert(JABBER_EXT_PLATFORMX86); */
if (m_options.EnableRemoteControl)
arrExtCaps.insert(JABBER_EXT_COMMANDS);