make sure we actually return something

This commit is contained in:
Hubert Chathi 2019-10-10 20:31:30 -04:00
parent 2208891ace
commit 7a0dce9259
2 changed files with 9 additions and 2 deletions

View file

@ -248,6 +248,11 @@ class E2eKeysHandler(object):
results = yield self.store.get_e2e_device_keys(local_query)
# Build the result structure
for user_id, device_keys in results.items():
for device_id, device_info in device_keys.items():
result_dict[user_id][device_id] = device_info
log_kv(results)
return result_dict