diff options
author | George Hazan <ghazan@miranda.im> | 2017-02-21 21:42:40 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-02-21 21:42:40 +0300 |
commit | 87b6b08235a1999ed3734c78af11f4b325b07663 (patch) | |
tree | 345f6bbbad5d03999615c313ddae0522d2dcd46d | |
parent | 51b03420aad0c15cfdeb0492b6141a27c797ff1d (diff) |
compilation fix
-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 df32105d1d..1fe2517167 100755 --- a/protocols/JabberG/src/jabber_thread.cpp +++ b/protocols/JabberG/src/jabber_thread.cpp @@ -951,7 +951,7 @@ void CJabberProto::OnProcessPubsubEvent(HXML node) HXML itemsNode;
if (m_options.UseOMEMO)
{
- itemsNode = XmlGetChildByTag(eventNode, "items", "node", JABBER_FEAT_OMEMO":devicelist");
+ itemsNode = XmlGetChildByTag(eventNode, L"items", L"node", JABBER_FEAT_OMEMO L":devicelist");
if (itemsNode)
{
OmemoHandleDeviceList(itemsNode);
|