From a7300534f8ea1a0ba2ec86a5d73f90a5723b3218 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Thu, 20 Oct 2005 09:35:00 +0000 Subject: [PATCH] update contact's chatstate when we receive it --- src/gajim.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gajim.py b/src/gajim.py index bed3feefa..9b1c89902 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -430,6 +430,8 @@ class Interface: if chatstate is not None: # he sent us reply, so he supports jep85 if contact.chatstate == 'ask': # we were jep85 disco? contact.chatstate = 'active' # no more + else: + contact.chatstate = chatstate chat_win.handle_incoming_chatstate(account, jid, chatstate) elif contact.chatstate != 'active':