summary refs log tree commit diff
path: root/synapse/visibility.py
diff options
context:
space:
mode:
authorDavid Teller <D.O.Teller@gmail.com>2021-02-08 15:53:44 +0100
committerGitHub <noreply@github.com>2021-02-08 15:53:44 +0100
commitb0b2cac0578a500922a17cf88131bc9f46ad9c39 (patch)
tree0256a010eaf2e057122667eb63b8e2c3296fff23 /synapse/visibility.py
parentUpdate type hints for Cursor to match PEP 249. (#9299) (diff)
parentFIXUP: linter (diff)
downloadsynapse-b0b2cac0578a500922a17cf88131bc9f46ad9c39.tar.xz
Merge pull request #9150 from Yoric/develop-context
New API /_synapse/admin/rooms/{roomId}/context/{eventId}
Diffstat (limited to 'synapse/visibility.py')
-rw-r--r--synapse/visibility.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/visibility.py b/synapse/visibility.py
index 4a5df293a4..e39d02602a 100644
--- a/synapse/visibility.py
+++ b/synapse/visibility.py
@@ -80,6 +80,7 @@ async def filter_events_for_client(
     events = [e for e in events if not e.internal_metadata.is_soft_failed()]
 
     types = ((EventTypes.RoomHistoryVisibility, ""), (EventTypes.Member, user_id))
+
     event_id_to_state = await storage.state.get_state_for_events(
         frozenset(e.event_id for e in events),
         state_filter=StateFilter.from_types(types),