we keep node in self.subscriptions, not name, so when we look in this dict, look for node.
This commit is contained in:
parent
ec80b7dc82
commit
b1c350f35c
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue