mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-05 08:34:57 -04:00
Add a missing yield in device key upload
(this would only very very rarely actually be a useful thing, so the main problem was the logcontext leak...)
This commit is contained in:
parent
35e0cfb54d
commit
e08f81d96a
1 changed files with 1 additions and 1 deletions
|
@ -316,7 +316,7 @@ class E2eKeysHandler(object):
|
|||
# old access_token without an associated device_id. Either way, we
|
||||
# need to double-check the device is registered to avoid ending up with
|
||||
# keys without a corresponding device.
|
||||
self.device_handler.check_device_registered(user_id, device_id)
|
||||
yield self.device_handler.check_device_registered(user_id, device_id)
|
||||
|
||||
result = yield self.store.count_e2e_one_time_keys(user_id, device_id)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue