forked from mystiq/hydrogen-web
Fix params
This commit is contained in:
parent
b59f916824
commit
0828ac12b1
1 changed files with 2 additions and 2 deletions
|
@ -105,9 +105,9 @@ export class Registration {
|
||||||
private _createRegistrationStage(type: string, session: string, params?: RegistrationParams) {
|
private _createRegistrationStage(type: string, session: string, params?: RegistrationParams) {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case "m.login.dummy":
|
case "m.login.dummy":
|
||||||
return new DummyAuth(session, params);
|
return new DummyAuth(session, params?.[type]);
|
||||||
case "m.login.terms":
|
case "m.login.terms":
|
||||||
return new TermsAuth(session, params);
|
return new TermsAuth(session, params?.[type]);
|
||||||
default:
|
default:
|
||||||
throw new Error(`Unknown stage: ${type}`);
|
throw new Error(`Unknown stage: ${type}`);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue