From bdec1952b0e9fce3081e2156b76c14b7b4561b74 Mon Sep 17 00:00:00 2001 From: Denis Fomin Date: Fri, 25 Oct 2013 22:07:15 +0400 Subject: [PATCH] Fix (Un)Block multiple contacts menu. Fixes #7526 --- src/roster_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/roster_window.py b/src/roster_window.py index 6ed977501..cf4ca1905 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -5915,7 +5915,7 @@ class RosterWindow: privacy_rules_supported = False contact = gajim.contacts.get_contact_with_highest_priority(account, jid) - if helpers.jid_is_blocked(account, jid): + if not helpers.jid_is_blocked(account, jid): is_blocked = False list_.append((contact, account))