1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/http/matrixfederationclient.py b/synapse/http/matrixfederationclient.py
index 6b41639741..b27c4c1c38 100644
--- a/synapse/http/matrixfederationclient.py
+++ b/synapse/http/matrixfederationclient.py
@@ -238,10 +238,10 @@ class MatrixFederationHttpClient(object):
# Enable backoff if initially disabled
send_request_args["backoff_on_404"] = backoff_on_404
- send_request_args["path"] += "/"
+ # Add trailing slash
+ send_request_args["request"].path += "/"
response = yield self._send_request(**send_request_args)
-
body = yield _handle_json_response(
self.hs.get_reactor(), self.default_timeout, request, response,
)
|