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/api | |
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/api')
-rw-r--r-- | synapse/api/auth.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py index bff87fabde..526cb58c5f 100644 --- a/synapse/api/auth.py +++ b/synapse/api/auth.py @@ -184,9 +184,7 @@ class Auth: """ try: ip_addr = self.hs.get_ip_from_request(request) - user_agent = request.requestHeaders.getRawHeaders( - b"User-Agent", default=[b""] - )[0].decode("ascii", "surrogateescape") + user_agent = request.get_user_agent("") access_token = self.get_access_token_from_request(request) |