mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-03 02:54:52 -04:00
Send down device list change notif when member leaves/rejoins room
This commit is contained in:
parent
e2fcba038c
commit
53cc8ad35a
3 changed files with 55 additions and 14 deletions
|
@ -320,7 +320,7 @@ class DeviceHandler(BaseHandler):
|
|||
|
||||
# check if this member has changed since any of the extremities
|
||||
# at the stream_ordering, and add them to the list if so.
|
||||
for state_dict in prev_state_ids.values():
|
||||
for state_dict in prev_state_ids.itervalues():
|
||||
prev_event_id = state_dict.get(key, None)
|
||||
if not prev_event_id or prev_event_id != event_id:
|
||||
possibly_changed.add(state_key)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue