Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
add missing param
Browse files Browse the repository at this point in the history
  • Loading branch information
uhoreg committed Aug 2, 2019
1 parent 9c2bc3a commit 4f3bcc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synapse/handlers/e2e_keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def on_federation_query_client_keys(self, query_body):
ret = {"device_keys": device_keys}

# 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
Expand Down

0 comments on commit 4f3bcc6

Please sign in to comment.