diff options
author | Erik Johnston <erik@matrix.org> | 2016-07-21 11:45:53 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-07-21 11:45:53 +0100 |
commit | cf94a78872397fd97465b4704465a2d03d27d41e (patch) | |
tree | 86bd3ff2126df802708f9e89d060f1f3e43ae47b /synapse/crypto | |
parent | Send the correct host header when fetching keys (diff) | |
download | synapse-cf94a78872397fd97465b4704465a2d03d27d41e.tar.xz |
Set host not path
Diffstat (limited to 'synapse/crypto')
-rw-r--r-- | synapse/crypto/keyclient.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/crypto/keyclient.py b/synapse/crypto/keyclient.py index 4fca215c97..1d85990369 100644 --- a/synapse/crypto/keyclient.py +++ b/synapse/crypto/keyclient.py @@ -135,5 +135,5 @@ class SynapseKeyClientFactory(Factory): def protocol(self): protocol = SynapseKeyClientProtocol() protocol.path = self.path - protocol.path = self.host + protocol.host = self.host return protocol |