summary refs log tree commit diff
path: root/synapse/handlers
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2020-06-12 14:12:04 -0400
committerGitHub <noreply@github.com>2020-06-12 14:12:04 -0400
commitd0a43d431ec3ab7603827d26924b3708a5bc33b2 (patch)
treeb6050eacb78b03bad8a1c3fdd638e97650d3182e /synapse/handlers
parentRemove "user_id" from GET /presence. (#7606) (diff)
downloadsynapse-d0a43d431ec3ab7603827d26924b3708a5bc33b2.tar.xz
Fix a typo when comparing the URI & method during UI Auth. (#7689)
Diffstat (limited to 'synapse/handlers')
-rw-r--r--synapse/handlers/auth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/auth.py b/synapse/handlers/auth.py

index 119678e67b..b01124fe42 100644 --- a/synapse/handlers/auth.py +++ b/synapse/handlers/auth.py
@@ -297,7 +297,7 @@ class AuthHandler(BaseHandler): # Convert the URI and method to strings. uri = request.uri.decode("utf-8") - method = request.uri.decode("utf-8") + method = request.method.decode("utf-8") # If there's no session ID, create a new session. if not sid: