diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2019-04-25 06:22:49 -0700 |
---|---|---|
committer | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-04-25 14:22:49 +0100 |
commit | 6824ddd93df1cfc347e4c8f423d54fab5bb732fb (patch) | |
tree | 4ef1853e6bd78aa2ed9cc75dcf7724b82aa27d97 /synapse/http | |
parent | Remove log error for .well-known/matrix/client (#4972) (diff) | |
download | synapse-6824ddd93df1cfc347e4c8f423d54fab5bb732fb.tar.xz |
Config option for verifying federation certificates (MSC 1711) (#4967)
Diffstat (limited to 'synapse/http')
-rw-r--r-- | synapse/http/federation/matrix_federation_agent.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/http/federation/matrix_federation_agent.py b/synapse/http/federation/matrix_federation_agent.py index 1334c630cc..b4cbe97b41 100644 --- a/synapse/http/federation/matrix_federation_agent.py +++ b/synapse/http/federation/matrix_federation_agent.py @@ -149,7 +149,7 @@ class MatrixFederationAgent(object): tls_options = None else: tls_options = self._tls_client_options_factory.get_options( - res.tls_server_name.decode("ascii") + res.tls_server_name.decode("ascii"), ) # make sure that the Host header is set correctly |