diff options
author | George Hazan <george.hazan@gmail.com> | 2015-01-26 20:54:25 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-01-26 20:54:25 +0000 |
commit | 0acc48076d8b2148d60d8a2532753c1eb06de276 (patch) | |
tree | abbc11dba7e92f98d1fc66d9537e91e8f28b1e84 /protocols/WhatsApp/src/contacts.cpp | |
parent | de6c7df3c362fa0104e7d908c29614266caaa9d6 (diff) |
fix for sending messages
git-svn-id: http://svn.miranda-ng.org/main/trunk@11919 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/WhatsApp/src/contacts.cpp')
-rw-r--r-- | protocols/WhatsApp/src/contacts.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/protocols/WhatsApp/src/contacts.cpp b/protocols/WhatsApp/src/contacts.cpp index 271c038622..39b7c48849 100644 --- a/protocols/WhatsApp/src/contacts.cpp +++ b/protocols/WhatsApp/src/contacts.cpp @@ -191,12 +191,6 @@ void WhatsAppProto::UpdateStatusMsg(MCONTACT hContact) ss << stzLastSeen;
}
- int state = getDword(hContact, WHATSAPP_KEY_LAST_MSG_STATE, 2);
- if (state < 2 && lastSeen != -1)
- ss << _T(" - ");
- for (; state < 2; ++state)
- ss << _T("\u2713");
-
db_set_ws(hContact, "CList", "StatusMsg", ss.str().c_str());
}
|