diff options
author | David Robertson <davidr@element.io> | 2022-11-18 19:56:42 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-18 19:56:42 +0000 |
commit | e1b15f25f3ad4b45b381544ca6b3cd2caf43d25d (patch) | |
tree | 1e90b1de80aee13ffbf80400435b2d5b617cc545 /synapse/crypto | |
parent | Reduce default third party invite rate limit to 216 invites per day (#14487) (diff) | |
download | synapse-e1b15f25f3ad4b45b381544ca6b3cd2caf43d25d.tar.xz |
Fix /key/v2/server calls with URL-unsafe key IDs (#14490)
Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com>
Diffstat (limited to 'synapse/crypto')
-rw-r--r-- | synapse/crypto/keyring.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/crypto/keyring.py b/synapse/crypto/keyring.py index dd9b8089ec..ed15f88350 100644 --- a/synapse/crypto/keyring.py +++ b/synapse/crypto/keyring.py @@ -857,7 +857,7 @@ class ServerKeyFetcher(BaseV2KeyFetcher): response = await self.client.get_json( destination=server_name, path="/_matrix/key/v2/server/" - + urllib.parse.quote(requested_key_id), + + urllib.parse.quote(requested_key_id, safe=""), ignore_backoff=True, # we only give the remote server 10s to respond. It should be an # easy request to handle, so if it doesn't reply within 10s, it's |