From 30319d8e44a6e5d29502c29c2f3a8212323414f9 Mon Sep 17 00:00:00 2001 From: David Baker Date: Tue, 11 Oct 2016 11:12:02 +0100 Subject: [PATCH] Fix registration retry We need to clear the current stage & start from the beginning again when we start a new registration attempt. --- src/Signup.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Signup.js b/src/Signup.js index 8185addd6d..c2d74adca9 100644 --- a/src/Signup.js +++ b/src/Signup.js @@ -123,6 +123,7 @@ class Register extends Signup { this.username = username; this.password = password; const client = this._createTemporaryClient(); + this.activeStage = null; return this._tryRegister(client); }