From fba3db7c575c62553f2f1b25a40332a02d06c906 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger <asterix@lagaule.org> Date: Sat, 18 Nov 2006 13:34:13 +0000 Subject: [PATCH] fix behaviour with multiple resources. fixes #2657. continue to test :) --- src/roster_window.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/roster_window.py b/src/roster_window.py index 578a530f2a..1d44460a53 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -1172,8 +1172,7 @@ class RosterWindow: contact.show = show contact.status = status if show in ('offline', 'error') and \ - len(gajim.events.get_events(account, contact.get_full_jid())) == 0 and \ - len(gajim.events.get_events(account, contact.jid)) == 0: + len(gajim.events.get_events(account, contact.get_full_jid())) == 0: if len(contact_instances) > 1: # if multiple resources gajim.contacts.remove_contact(account, contact) -- GitLab