mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-03 18:24:49 -04:00
Remove room_version
param from check_auth_rules_for_event
Instead, use the `room_version` property of the event we're checking. The `room_version` was originally added as a parameter somewhere around #4482, but really it's been redundant since #6875 added a `room_version` field to `EventBase`.
This commit is contained in:
parent
68be42f6b6
commit
0d9d36b15c
6 changed files with 16 additions and 65 deletions
|
@ -55,7 +55,7 @@ class EventAuthHandler:
|
|||
"""Check an event passes the auth rules at its own auth events"""
|
||||
auth_event_ids = event.auth_event_ids()
|
||||
auth_events_by_id = await self._store.get_events(auth_event_ids)
|
||||
check_auth_rules_for_event(room_version_obj, event, auth_events_by_id.values())
|
||||
check_auth_rules_for_event(event, auth_events_by_id.values())
|
||||
|
||||
def compute_auth_events(
|
||||
self,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue