diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2017-09-14 12:24:30 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2017-09-14 12:27:58 +0300 |
commit | d8a068a2beeb0056b303a612475e7eaa3188e157 (patch) | |
tree | b58824154019a1bc70782b2ff7b53da203e84cb1 /protocols/JabberG/src/jabber_thread.cpp | |
parent | 0ffbab0d52108b62627cd2a12179aade907a0012 (diff) |
jabber: omemo: switched to xep-0384
used newest xep-0384 (https://xmpp.org/extensions/xep-0384.html) instead of https://conversations.im/xeps/multi-end.html (they are incompatible)
Diffstat (limited to 'protocols/JabberG/src/jabber_thread.cpp')
-rwxr-xr-x | protocols/JabberG/src/jabber_thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_thread.cpp b/protocols/JabberG/src/jabber_thread.cpp index ded39e2234..c373e4e521 100755 --- a/protocols/JabberG/src/jabber_thread.cpp +++ b/protocols/JabberG/src/jabber_thread.cpp @@ -947,7 +947,7 @@ void CJabberProto::OnProcessPubsubEvent(HXML node) HXML itemsNode;
if (m_options.UseOMEMO)
{
- itemsNode = XmlGetChildByTag(eventNode, L"items", L"node", JABBER_FEAT_OMEMO L".devicelist");
+ itemsNode = XmlGetChildByTag(eventNode, L"items", L"node", JABBER_FEAT_OMEMO L":devicelist");
if (itemsNode)
{
OmemoHandleDeviceList(itemsNode);
|