summary refs log tree commit diff
path: root/synapse/api/auth.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2020-01-06 15:43:41 +0000
committerRichard van der Hoff <richard@matrix.org>2020-01-06 15:43:41 +0000
commit859663565c81107696ad1e2fc3ef6fab97bb17e1 (patch)
tree312803b89460c3c87b6c5c3bac3d9be9610c5e39 /synapse/api/auth.py
parentMerge branch 'release-v1.7.3' into matrix-org-hotfixes (diff)
parentFix some test failures when frozen_dicts are enabled (#6642) (diff)
downloadsynapse-859663565c81107696ad1e2fc3ef6fab97bb17e1.tar.xz
Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixes
Diffstat (limited to 'synapse/api/auth.py')
-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 9fd52a8c77..abbc7079a3 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 )