From 7b75f16452eb389c635f8b18600222cd05feadac Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sat, 31 Jan 2015 21:05:49 +0000 Subject: - bindata considered useless; - fix for audio files processing git-svn-id: http://svn.miranda-ng.org/main/trunk@11968 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/WhatsApp/src/WhatsAPI++/WAConnection.cpp | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'protocols/WhatsApp/src/WhatsAPI++/WAConnection.cpp') diff --git a/protocols/WhatsApp/src/WhatsAPI++/WAConnection.cpp b/protocols/WhatsApp/src/WhatsAPI++/WAConnection.cpp index c08066426e..ffaeff52b9 100644 --- a/protocols/WhatsApp/src/WhatsAPI++/WAConnection.cpp +++ b/protocols/WhatsApp/src/WhatsAPI++/WAConnection.cpp @@ -413,19 +413,11 @@ void WAConnection::parseMessage(ProtocolTreeNode *messageNode) throw (WAExceptio } } else { - if (media->data == NULL || media->data->empty()) - return; - const string &encoding = media->getAttributeValue("encoding"); if (encoding.empty() || encoding == "text") fmessage.data = media->getDataAsString(); - else { + else fmessage.data = media->getAttributeValue("caption"); - if (media->data->size() > 0) { - fmessage.bindata = (unsigned char*)malloc(fmessage.bindata_len = media->data->size()); - memcpy(fmessage.bindata, media->data->data(), fmessage.bindata_len); - } - } } if (m_pEventHandler != NULL) -- cgit v1.2.3