diff options
author | Vladimir <me@boku.ru> | 2018-01-29 17:56:07 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-01-30 18:51:41 +0300 |
commit | ac42d6d50636db69e56623b4b8093a5993c829d1 (patch) | |
tree | 71eeafa5e9b59d444a3073e3ac9d57845e5c285b /protocols/JabberG/src/jabber_iqid.cpp | |
parent | 3d7ef20f11d1bfc7c75a16943a9c8cfcaef1408e (diff) |
Carbons support attempt
Diffstat (limited to 'protocols/JabberG/src/jabber_iqid.cpp')
-rwxr-xr-x | protocols/JabberG/src/jabber_iqid.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/protocols/JabberG/src/jabber_iqid.cpp b/protocols/JabberG/src/jabber_iqid.cpp index da7c1260f6..4ecac9d48e 100755 --- a/protocols/JabberG/src/jabber_iqid.cpp +++ b/protocols/JabberG/src/jabber_iqid.cpp @@ -135,6 +135,9 @@ void CJabberProto::OnProcessLoginRq(ThreadData *info, DWORD rq) if (info->jabberServerCaps & JABBER_CAPS_ARCHIVE_AUTO)
EnableArchive(m_options.EnableMsgArchive != 0);
+ if (info->jabberServerCaps & JABBER_CAPS_CARBONS)
+ EnableCarbons(true);
+
if (m_options.AutoJoinBookmarks) {
LIST<JABBER_LIST_ITEM> ll(10);
LISTFOREACH(i, this, LIST_BOOKMARK)
|