summaryrefslogtreecommitdiff
path: root/protocols/JabberG/src/jabber_thread.cpp
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss@sss.chaoslab.ru>2018-04-25 00:25:31 +0300
committerGluzskiy Alexandr <sss@sss.chaoslab.ru>2018-04-25 00:27:04 +0300
commit555407743e03465f43a2840bae8e0146e7152b32 (patch)
tree800147c50f3ece64dff25b5a945b4382fc6000dd /protocols/JabberG/src/jabber_thread.cpp
parentdac9bb3e102ffd6511f377085f765d97a05f26ee (diff)
protocols: jabber: omemo
- fixed hmac_sha256 (used openssl based instead of broken internal implementation) - utf8 related fixes
Diffstat (limited to 'protocols/JabberG/src/jabber_thread.cpp')
-rwxr-xr-xprotocols/JabberG/src/jabber_thread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_thread.cpp b/protocols/JabberG/src/jabber_thread.cpp
index 82bd29a43e..0c6757ce88 100755
--- a/protocols/JabberG/src/jabber_thread.cpp
+++ b/protocols/JabberG/src/jabber_thread.cpp
@@ -1282,7 +1282,7 @@ void CJabberProto::OnProcessMessage(HXML node, ThreadData *info)
{
if (!OmemoHandleMessage(xNode, (wchar_t*)jid, msgTime))
OmemoPutMessageToIncommingQueue(xNode, (wchar_t*)jid, msgTime);
- continue;
+ return; //we do not want any additional processing
}
}
}