mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-07-31 22:18:35 -04:00
Change context.auth_events to what the auth_events would be bases on context.current_state, rather than based on the auth_events from the event.
This commit is contained in:
parent
03d415a6a2
commit
650e32d455
3 changed files with 15 additions and 9 deletions
|
@ -842,7 +842,9 @@ class FederationHandler(BaseHandler):
|
|||
logger.debug("Different auth: %s", different_auth)
|
||||
|
||||
# 1. Get what we think is the auth chain.
|
||||
auth_ids = self.auth.compute_auth_events(event, context)
|
||||
auth_ids = self.auth.compute_auth_events(
|
||||
event, context.current_state
|
||||
)
|
||||
local_auth_chain = yield self.store.get_auth_chain(auth_ids)
|
||||
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue