summary refs log tree commit diff
path: root/synapse/api
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-03-20 14:55:54 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2020-03-20 14:55:54 +0000
commitefd80e0d056f08a6adc4a0cf113ebd04249b5f94 (patch)
tree517d2dc35ff1192eabab02aa122e0807163772cd /synapse/api
parentFix exceptions when attempting to backfill (#6576) (diff)
parentChange EventContext to use the Storage class (#6564) (diff)
downloadsynapse-efd80e0d056f08a6adc4a0cf113ebd04249b5f94.tar.xz
Change EventContext to use the Storage class (#6564)
* commit 'fa780e972':
  Change EventContext to use the Storage class (#6564)
Diffstat (limited to 'synapse/api')
-rw-r--r--synapse/api/auth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py

index 7f11b56eea..9c687fafe5 100644 --- a/synapse/api/auth.py +++ b/synapse/api/auth.py
@@ -79,7 +79,7 @@ class Auth(object): @defer.inlineCallbacks def check_from_context(self, room_version, event, context, do_sig_check=True): - prev_state_ids = yield context.get_prev_state_ids(self.store) + prev_state_ids = yield context.get_prev_state_ids() auth_events_ids = yield self.compute_auth_events( event, prev_state_ids, for_verification=True )