summary refs log tree commit diff
path: root/synapse/handlers/e2e_keys.py
diff options
context:
space:
mode:
authorHubert Chathi <hubert@uhoreg.ca>2019-08-02 18:03:23 -0400
committerHubert Chathi <hubert@uhoreg.ca>2019-10-22 19:06:29 -0400
commit41ad35b5235ad9ed8a1b8889287ae840ee3373bd (patch)
treec01cd516361a5983ac3f8b1174fae4efec7b0c7f /synapse/handlers/e2e_keys.py
parentmake black happy (diff)
downloadsynapse-41ad35b5235ad9ed8a1b8889287ae840ee3373bd.tar.xz
add missing param
Diffstat (limited to 'synapse/handlers/e2e_keys.py')
-rw-r--r--synapse/handlers/e2e_keys.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/e2e_keys.py b/synapse/handlers/e2e_keys.py
index f3cfba0bd3..6b65f47d18 100644
--- a/synapse/handlers/e2e_keys.py
+++ b/synapse/handlers/e2e_keys.py
@@ -355,7 +355,7 @@ class E2eKeysHandler(object):
         ret = {"device_keys": res}
 
         # add in the cross-signing keys
-        cross_signing_keys = yield self.query_cross_signing_keys(device_keys_query)
+        cross_signing_keys = yield self.query_cross_signing_keys(device_keys_query, None)
 
         for key, value in iteritems(cross_signing_keys):
             ret[key + "_keys"] = value