summary refs log tree commit diff
path: root/synapse/http/site.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-09-14 18:25:55 +0100
committerErik Johnston <erik@matrix.org>2018-09-14 18:25:55 +0100
commitb5eef203f4dbfd020ef56677581d361aacda4c1a (patch)
tree91aacdf174700cc42a764631195952b62247ddd0 /synapse/http/site.py
parentMerge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes (diff)
parentdon't filter membership events based on history visibility (#3874) (diff)
downloadsynapse-b5eef203f4dbfd020ef56677581d361aacda4c1a.tar.xz
Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes
Diffstat (limited to 'synapse/http/site.py')
-rw-r--r--synapse/http/site.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/synapse/http/site.py b/synapse/http/site.py

index f0828c6542..e1e53e8ae5 100644 --- a/synapse/http/site.py +++ b/synapse/http/site.py
@@ -85,7 +85,10 @@ class SynapseRequest(Request): return "%s-%i" % (self.method, self.request_seq) def get_redacted_uri(self): - return redact_uri(self.uri) + uri = self.uri + if isinstance(uri, bytes): + uri = self.uri.decode('ascii') + return redact_uri(uri) def get_user_agent(self): return self.requestHeaders.getRawHeaders(b"User-Agent", [None])[-1]