From a9624838efbc5713e46f9cc08689b39976f810d3 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Wed, 8 Nov 2006 07:36:52 +0000 Subject: [PATCH] overwrite contact instance when the one that remain is offline. fixes #2569 --- src/gajim.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gajim.py b/src/gajim.py index 940e721d8..635693bc2 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -531,7 +531,8 @@ class Interface: # unknow contact or offline message jid_of_control = jid chat_control = self.msg_win_mgr.get_control(jid, account) - elif highest_contact and resource != highest_contact.resource: + elif highest_contact and resource != highest_contact.resource and \ + highest_contact.show != 'offline': jid_of_control = full_jid_with_resource chat_control = None elif not pm: