From e04cc5add524f6c322be3bf1e6c406fbeba93657 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Sun, 7 Aug 2005 23:34:02 +0000 Subject: [PATCH] set chatstate active when we send a message with body --- src/tabbed_chat_window.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tabbed_chat_window.py b/src/tabbed_chat_window.py index f41b19a52..3d7a48284 100644 --- a/src/tabbed_chat_window.py +++ b/src/tabbed_chat_window.py @@ -634,6 +634,7 @@ class TabbedChatWindow(chat.Chat): elif contact.chatstate is not False: #send active chatstate on every message (as JEP says) chatstate_to_send = 'active' + contact.chatstate = 'active' gajim.connections[self.account].send_message(jid, message, keyID, chatstate = chatstate_to_send)