summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2024-07-10 16:28:49 +0100
committerErik Johnston <erik@matrix.org>2024-07-10 16:28:49 +0100
commit8c8f1e782d09ad665046d24b1d5b19c4fc0275b1 (patch)
tree43e5c48eb31f8700ac646f52d6e04cb8d89cdba7
parentFIXUP (diff)
downloadsynapse-8c8f1e782d09ad665046d24b1d5b19c4fc0275b1.tar.xz
FIXUP
-rw-r--r--synapse/handlers/sliding_sync.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/handlers/sliding_sync.py b/synapse/handlers/sliding_sync.py

index a0493d33db..eff67ef1b8 100644 --- a/synapse/handlers/sliding_sync.py +++ b/synapse/handlers/sliding_sync.py
@@ -1044,7 +1044,9 @@ class SlidingSyncHandler: # https://github.com/matrix-org/matrix-spec-proposals/pull/3575#discussion_r1653045932 last_activity_in_room_map[room_id] = room_for_user.event_pos.stream - for room_id, stream_pos in await self.store.rough_get_last_pos(to_fetch): + for room_id, stream_pos in ( + await self.store.rough_get_last_pos(to_fetch) + ).items(): if stream_pos is not None: last_activity_in_room_map[room_id] = stream_pos