From b38b36d8cc4d5bffd84514c3089f952f9e115e40 Mon Sep 17 00:00:00 2001 From: aunsane Date: Sat, 25 Feb 2017 22:54:15 +0300 Subject: Tox: attempt to fix #698 --- protocols/Tox/src/tox_messages.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'protocols/Tox/src/tox_messages.cpp') diff --git a/protocols/Tox/src/tox_messages.cpp b/protocols/Tox/src/tox_messages.cpp index b1c6ef7d3d..0cc1e768d3 100644 --- a/protocols/Tox/src/tox_messages.cpp +++ b/protocols/Tox/src/tox_messages.cpp @@ -181,9 +181,6 @@ void CToxProto::OnTypingChanged(Tox*, uint32_t friendNumber, bool isTyping, void { CToxProto *proto = (CToxProto*)arg; - if (MCONTACT hContact = proto->GetContact(friendNumber)) - { - int typingStatus = (isTyping ? PROTOTYPE_CONTACTTYPING_INFINITE : PROTOTYPE_CONTACTTYPING_OFF); - CallService(MS_PROTO_CONTACTISTYPING, hContact, (LPARAM)typingStatus); - } + if (MCONTACT hContact = proto->GetContact(friendNumber) && isTyping) + CallService(MS_PROTO_CONTACTISTYPING, hContact, (LPARAM)5); } \ No newline at end of file -- cgit v1.2.3