From e8dce570eac86cb9b888a61776ca5c858c03a1aa Mon Sep 17 00:00:00 2001 From: mathieui Date: Tue, 7 Aug 2012 11:05:28 +0200 Subject: Take care of the race condition "node@groupchat_server is now online/offline" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - get rid of the ugly blacklist thing that didn’t work sometimes --- src/roster.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/roster.py') diff --git a/src/roster.py b/src/roster.py index adf0fd2a..3458d5b5 100644 --- a/src/roster.py +++ b/src/roster.py @@ -25,13 +25,9 @@ from sleekxmpp.exceptions import IqError class Roster(object): """ The proxy class to get the roster from SleekXMPP. - Adds a blacklist for the MUC domains (or else they would show here), - and caches Contact and RosterGroup objects. + Caches Contact and RosterGroup objects. """ - # MUC domains to blacklist from the contacts roster - blacklist = set() - def __init__(self): """ node: the RosterSingle from SleekXMPP @@ -121,7 +117,7 @@ class Roster(object): def jids(self): """List of the contact JIDS""" - return [key for key in self.__node.keys() if safeJID(key).server not in self.blacklist and key != self.jid] + return [key for key in self.__node.keys() if key != self.jid] def get_contacts(self): """ -- cgit v1.2.3