summaryrefslogtreecommitdiff
path: root/src/roster.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2012-08-07 11:05:28 +0200
committermathieui <mathieui@mathieui.net>2012-08-07 11:05:28 +0200
commite8dce570eac86cb9b888a61776ca5c858c03a1aa (patch)
tree97853826c89cbf17d41f0e413bb68b216654886d /src/roster.py
parent7a485ef4d0d74313bff8c9c7b2ee2dcb5c4a75e9 (diff)
downloadpoezio-e8dce570eac86cb9b888a61776ca5c858c03a1aa.tar.gz
poezio-e8dce570eac86cb9b888a61776ca5c858c03a1aa.tar.bz2
poezio-e8dce570eac86cb9b888a61776ca5c858c03a1aa.tar.xz
poezio-e8dce570eac86cb9b888a61776ca5c858c03a1aa.zip
Take care of the race condition "node@groupchat_server is now online/offline"
- get rid of the ugly blacklist thing that didn’t work sometimes
Diffstat (limited to 'src/roster.py')
-rw-r--r--src/roster.py8
1 files changed, 2 insertions, 6 deletions
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):
"""