mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Rename to be obvious: joined_rooms
-> joined_room_ids
(#17203)
Split out from https://github.com/element-hq/synapse/pull/17167
This commit is contained in:
parent
28a948f04f
commit
52a649580f
1
changelog.d/17203.misc
Normal file
1
changelog.d/17203.misc
Normal file
@ -0,0 +1 @@
|
||||
Rename to be obvious: `joined_rooms` -> `joined_room_ids`.
|
@ -1850,7 +1850,7 @@ class SyncHandler:
|
||||
|
||||
users_that_have_changed = set()
|
||||
|
||||
joined_rooms = sync_result_builder.joined_room_ids
|
||||
joined_room_ids = sync_result_builder.joined_room_ids
|
||||
|
||||
# Step 1a, check for changes in devices of users we share a room
|
||||
# with
|
||||
@ -1909,7 +1909,7 @@ class SyncHandler:
|
||||
# Remove any users that we still share a room with.
|
||||
left_users_rooms = await self.store.get_rooms_for_users(newly_left_users)
|
||||
for user_id, entries in left_users_rooms.items():
|
||||
if any(rid in joined_rooms for rid in entries):
|
||||
if any(rid in joined_room_ids for rid in entries):
|
||||
newly_left_users.discard(user_id)
|
||||
|
||||
return DeviceListUpdates(changed=users_that_have_changed, left=newly_left_users)
|
||||
|
Loading…
Reference in New Issue
Block a user