summaryrefslogtreecommitdiff
path: root/protocols/JabberG/src/jabber_util.cpp
diff options
context:
space:
mode:
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);