From 64abb765dd68ede0fa6fd9683f60366997cacba6 Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Sat, 26 Sep 2015 18:03:16 +0100 Subject: [PATCH] Needs to be dict, not string --- synapse/handlers/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synapse/handlers/auth.py b/synapse/handlers/auth.py index 612654a517..f1db967203 100644 --- a/synapse/handlers/auth.py +++ b/synapse/handlers/auth.py @@ -384,7 +384,7 @@ class AuthHandler(BaseHandler): ) if does_match: - user_dict[nonce] = client_nonce + user_dict.setdefault(nonce, {})["client_nonce"] = client_nonce return does_match