pull/6436/head
Brendan Abolivier 2019-11-28 20:35:22 +00:00 committed by GitHub
parent 5ee2beeddb
commit 78ec11c085
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 4 deletions

View File

@ -44,7 +44,11 @@ MEMBERSHIP_PRIORITY = (
@defer.inlineCallbacks
def filter_events_for_client(
storage: Storage, user_id, events, is_peeking=False, always_include_ids=frozenset(),
storage: Storage,
user_id,
events,
is_peeking=False,
always_include_ids=frozenset(),
apply_retention_policies=True,
):
"""
@ -96,9 +100,9 @@ def filter_events_for_client(
retention_policies = {}
for room_id in room_ids:
retention_policies[room_id] = (
yield storage.main.get_retention_policy_for_room(room_id)
)
retention_policies[
room_id
] = yield storage.main.get_retention_policy_for_room(room_id)
def allowed(event):
"""