From 9c4671568d55a1f55f7d79dc39f5841a7eb6dffe Mon Sep 17 00:00:00 2001 From: Matthew Hodgson Date: Sat, 24 Dec 2016 22:33:04 +0000 Subject: [PATCH] fix disasterous thinko in https://github.com/matrix-org/matrix-react-sdk/pull/601/commits/69b277b28285eec9ab4c9f9fabcef194996db9bf --- src/SignupStages.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SignupStages.js b/src/SignupStages.js index 06401da218..6bdc331566 100644 --- a/src/SignupStages.js +++ b/src/SignupStages.js @@ -66,7 +66,7 @@ class RecaptchaStage extends Stage { if (!data || !data.response) { return; } - this.authDict.response = data.response; + this.authDict.auth.response = data.response; } complete() {