From b1c350f35c1500d13ed55296f5f51a2b0bb3ee29 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Wed, 14 Feb 2007 10:13:27 +0000 Subject: [PATCH] we keep node in self.subscriptions, not name, so when we look in this dict, look for node. --- src/disco.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/disco.py b/src/disco.py index 00accd963..bbed4c142 100644 --- a/src/disco.py +++ b/src/disco.py @@ -1753,7 +1753,7 @@ class DiscussionGroupsBrowser(AgentBrowser): if self.subscriptions is not None: dunno = False - subscribed = name in self.subscriptions + subscribed = node in self.subscriptions else: dunno = True subscribed = False