diff options
author | Robert Pösel <robyer@seznam.cz> | 2014-06-19 10:39:53 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2014-06-19 10:39:53 +0000 |
commit | 8cc704c0ac76ac635b2ca5e40ce5a21f2686156a (patch) | |
tree | 4d4c6b9cdbb2dceabcc0c3981a789404d32d0e7d /protocols/FacebookRM/src/messages.cpp | |
parent | 67e3f0fb7e0ace16b2aae903d7f17beea95fafe0 (diff) |
Facebook: Correctly show stopped-typing event after receive message (broken by r9482)
git-svn-id: http://svn.miranda-ng.org/main/trunk@9540 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM/src/messages.cpp')
-rw-r--r-- | protocols/FacebookRM/src/messages.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/protocols/FacebookRM/src/messages.cpp b/protocols/FacebookRM/src/messages.cpp index 800f5c27be..aae8a55ca5 100644 --- a/protocols/FacebookRM/src/messages.cpp +++ b/protocols/FacebookRM/src/messages.cpp @@ -24,7 +24,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. int FacebookProto::RecvMsg(MCONTACT hContact, PROTORECVEVENT *pre)
{
- //CallService(MS_PROTO_CONTACTISTYPING, hContact, (LPARAM)PROTOTYPE_CONTACTTYPING_OFF);
+ StopTyping(hContact);
+
CallService(MS_MSG_SETSTATUSTEXT, (WPARAM)hContact, NULL);
return Proto_RecvMessage(hContact, pre);
|