diff options
author | George Hazan <george.hazan@gmail.com> | 2015-01-26 23:35:02 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-01-26 23:35:02 +0000 |
commit | 24c5c5da5e34c0cfb1f6798afb3029f85d5dd062 (patch) | |
tree | 6c797923770fad042c93b5dfe41aa1de1eba7218 /protocols/WhatsApp/src/messages.cpp | |
parent | 88d6662a12f18844e5487c3d35155d3fbbff85a5 (diff) |
WhatsApp: fix for send/recv messages
git-svn-id: http://svn.miranda-ng.org/main/trunk@11922 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/WhatsApp/src/messages.cpp')
-rw-r--r-- | protocols/WhatsApp/src/messages.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/WhatsApp/src/messages.cpp b/protocols/WhatsApp/src/messages.cpp index 8d774a47d0..af077934d0 100644 --- a/protocols/WhatsApp/src/messages.cpp +++ b/protocols/WhatsApp/src/messages.cpp @@ -54,7 +54,7 @@ int WhatsAppProto::SendMsg(MCONTACT hContact, int flags, const char *msg) return 0;
}
- int msgId = this->m_pConnection->msg_id++;
+ int msgId = ++this->m_pConnection->msg_id;
try {
time_t now = time(NULL);
std::string id = Utilities::intToStr(now) + "-" + Utilities::intToStr(msgId);
|