Fix registration retry

We need to clear the current stage & start from the beginning
again when we start a new registration attempt.
pull/21833/head
David Baker 2016-10-11 11:12:02 +01:00
parent 55437d7583
commit 30319d8e44
1 changed files with 1 additions and 0 deletions

View File

@ -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);
}