diff options
author | Erik Johnston <erik@matrix.org> | 2020-10-23 17:12:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-23 17:12:59 +0100 |
commit | c850dd9a8e4e4f78fbe0b44686f3824b901236f6 (patch) | |
tree | 6ba78d1e55160a9f0cd70a40c88f6100abc00b5a /synapse/handlers/oidc_handler.py | |
parent | Fix email notifications for invites without local state. (#8627) (diff) | |
download | synapse-c850dd9a8e4e4f78fbe0b44686f3824b901236f6.tar.xz |
Fix handling of User-Agent headers with bad utf-8. (#8632)
Diffstat (limited to 'synapse/handlers/oidc_handler.py')
-rw-r--r-- | synapse/handlers/oidc_handler.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/synapse/handlers/oidc_handler.py b/synapse/handlers/oidc_handler.py index 05ac86e697..a312610635 100644 --- a/synapse/handlers/oidc_handler.py +++ b/synapse/handlers/oidc_handler.py @@ -695,9 +695,7 @@ class OidcHandler: return # Pull out the user-agent and IP from the request. - user_agent = request.requestHeaders.getRawHeaders(b"User-Agent", default=[b""])[ - 0 - ].decode("ascii", "surrogateescape") + user_agent = request.get_user_agent("") ip_address = self.hs.get_ip_from_request(request) # Call the mapper to register/login the user |