From 6f2935ba4e9ec4c09a4a4fcaa99357973b982827 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Tue, 12 Feb 2013 19:31:35 +0100 Subject: [PATCH] check that contacts are not in "not in roster" group when we receive a RIE stanza. Fixes #7289 --- src/dialogs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dialogs.py b/src/dialogs.py index 768bdbb43..beab9fdb8 100644 --- a/src/dialogs.py +++ b/src/dialogs.py @@ -3480,7 +3480,7 @@ class RosterItemExchangeWindow: is_in_roster = True contact = gajim.contacts.get_contact_with_highest_priority( self.account, jid) - if not contact: + if not contact or _('Not in Roster') in contact.groups: is_in_roster = False name = self.exchange_list[jid][0] num_list = len(self.exchange_list[jid][1])