diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-07-27 13:40:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-27 13:40:22 -0400 |
commit | 8553f4649857c7862e30917adc925642ad684a10 (patch) | |
tree | b27f5be2f4a4156ba4f058c09516f104636b4e9e /synapse/api | |
parent | Convert groups and visibility code to async / await. (#7951) (diff) | |
download | synapse-8553f4649857c7862e30917adc925642ad684a10.tar.xz |
Convert a synapse.events to async/await. (#7949)
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py index b53e8451e5..2178e623da 100644 --- a/synapse/api/auth.py +++ b/synapse/api/auth.py @@ -82,7 +82,7 @@ class Auth(object): @defer.inlineCallbacks def check_from_context(self, room_version: str, event, context, do_sig_check=True): - prev_state_ids = yield context.get_prev_state_ids() + prev_state_ids = yield defer.ensureDeferred(context.get_prev_state_ids()) auth_events_ids = yield self.compute_auth_events( event, prev_state_ids, for_verification=True ) |