diff options
author | George Hazan <george.hazan@gmail.com> | 2015-02-09 14:03:33 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-02-09 14:03:33 +0000 |
commit | 9e791b8e15d0d5d8686436ed9eee010e670b858b (patch) | |
tree | a440a815c964d6a213e324c38aa287cc4a91f51b /protocols/WhatsApp/src/WhatsAPI++/WAConnection.cpp | |
parent | 326df8a13d865eccf3c3290c785ed92082574110 (diff) |
- fix for 'change subject' notifications;
- merge from branch
git-svn-id: http://svn.miranda-ng.org/main/trunk@12062 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/WhatsApp/src/WhatsAPI++/WAConnection.cpp')
-rw-r--r-- | protocols/WhatsApp/src/WhatsAPI++/WAConnection.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/protocols/WhatsApp/src/WhatsAPI++/WAConnection.cpp b/protocols/WhatsApp/src/WhatsAPI++/WAConnection.cpp index 40d9970751..1d5e59b00e 100644 --- a/protocols/WhatsApp/src/WhatsAPI++/WAConnection.cpp +++ b/protocols/WhatsApp/src/WhatsAPI++/WAConnection.cpp @@ -559,7 +559,6 @@ void WAConnection::parseNotification(ProtocolTreeNode *node) throw(WAException) ProtocolTreeNode *bodyNode = node->getChild("body");
if (bodyNode != NULL && m_pGroupEventHandler != NULL)
m_pGroupEventHandler->onGroupNewSubject(from, participant, bodyNode->getDataAsString(), ts);
- return; // don't set ack
}
ProtocolTreeNode sendNode("ack");
|