summaryrefslogtreecommitdiff
path: root/protocols/WhatsApp/src/chat.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2015-02-08 16:01:50 +0000
committerGeorge Hazan <george.hazan@gmail.com>2015-02-08 16:01:50 +0000
commitf3a873e47ed64d570fd6c678a1d815b13711d017 (patch)
treebba4e293d4ba0a2eb91e4b75608de328f61e3b07 /protocols/WhatsApp/src/chat.cpp
parent149298bd03dcfce00815d798c9f670e8ea24e7e0 (diff)
fix for sending contacts into chats
git-svn-id: http://svn.miranda-ng.org/main/trunk@12056 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/WhatsApp/src/chat.cpp')
-rw-r--r--protocols/WhatsApp/src/chat.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/protocols/WhatsApp/src/chat.cpp b/protocols/WhatsApp/src/chat.cpp
index c34f9e8e1b..f5d1545c04 100644
--- a/protocols/WhatsApp/src/chat.cpp
+++ b/protocols/WhatsApp/src/chat.cpp
@@ -327,6 +327,12 @@ void WhatsAppProto::onGroupInfo(const std::string &jid, const std::string &owner
void WhatsAppProto::onGroupMessage(const FMessage &pMsg)
{
+ // we need to add a contact, so there's no difference at all
+ if (pMsg.media_wa_type == FMessage::WA_TYPE_CONTACT) {
+ onMessageForMe(pMsg);
+ return;
+ }
+
WAChatInfo *pInfo = SafeGetChat(pMsg.key.remote_jid);
if (pInfo == NULL) {
pInfo = InitChat(pMsg.key.remote_jid, "");