mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 09:46:09 +03:00
Fix registration
null check
This commit is contained in:
parent
ea69129d8c
commit
55d14d2adc
1 changed files with 1 additions and 1 deletions
|
@ -160,7 +160,7 @@ class Register extends Signup {
|
|||
if (flow) {
|
||||
console.log("Active flow => %s", JSON.stringify(flow));
|
||||
var flowStage = self.firstUncompletedStage(flow);
|
||||
if (flowStage != self.activeStage.type) {
|
||||
if (!self.activeStage || flowStage != self.activeStage.type) {
|
||||
return self._startStage(client, flowStage).catch(function(err) {
|
||||
self.setStep('START');
|
||||
throw err;
|
||||
|
|
Loading…
Reference in a new issue