summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2019-05-07 14:16:26 +0100
committerBrendan Abolivier <contact@brendanabolivier.com>2019-05-07 14:16:26 +0100
commitf059a910851ae15a88217c6c38b38807f2a491ac (patch)
tree0889d17b2a01d33f9924b73868a066952ccdd007
parentFix expected key in bulk lookup response (diff)
downloadsynapse-f059a910851ae15a88217c6c38b38807f2a491ac.tar.xz
/bulk_lookup doesn't return a signature
-rw-r--r--synapse/handlers/identity.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/synapse/handlers/identity.py b/synapse/handlers/identity.py

index 758390195b..6066018275 100644 --- a/synapse/handlers/identity.py +++ b/synapse/handlers/identity.py
@@ -410,11 +410,6 @@ class IdentityHandler(BaseHandler): } ) - if "threepids" in data: - if "signatures" not in data: - raise AuthError(401, "No signatures on 3pid bindings") - yield self._verify_any_signature(data, id_server) - except HttpResponseException as e: logger.info("Proxied lookup failed: %r", e) raise e.to_synapse_error()