Skip to content
Snippets Groups Projects
Commit 07d40417 authored by Erik Johnston's avatar Erik Johnston
Browse files

Fix bug where we didn't inform the NotificataionListeners about new rooms they...

Fix bug where we didn't inform the NotificataionListeners about new rooms they have been subscribed to. This meant that the listeners didn't clean themselves up fully from all the dicts
parent 0775c624
No related branches found
No related tags found
No related merge requests found
......@@ -427,3 +427,6 @@ class Notifier(object):
listeners = self.room_to_listeners.setdefault(room_id, set())
listeners |= new_listeners
for l in new_listeners:
l.rooms.add(room_id)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment