Fix registration retry

We need to clear the current stage & start from the beginning
again when we start a new registration attempt.
This commit is contained in:
David Baker 2016-10-11 11:12:02 +01:00
parent 55437d7583
commit 30319d8e44

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