From a448c0218defbc104e2116d7f76d92c194e2826a Mon Sep 17 00:00:00 2001 From: RMidhunSuresh Date: Tue, 11 Oct 2022 18:01:54 +0530 Subject: [PATCH] Fix missing semicolon --- src/matrix/registration/Registration.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matrix/registration/Registration.ts b/src/matrix/registration/Registration.ts index e47bc2db..82e3ade5 100644 --- a/src/matrix/registration/Registration.ts +++ b/src/matrix/registration/Registration.ts @@ -34,7 +34,7 @@ export class Registration { private readonly _hsApi: HomeServerApi; private readonly _accountDetails: AccountDetails; private readonly _flowSelector: FlowSelector; - private _sessionInfo?: RegistrationResponseSuccess + private _sessionInfo?: RegistrationResponseSuccess; public readonly homeserver: string; constructor(homeserver: string, hsApi: HomeServerApi, accountDetails: AccountDetails, flowSelector?: FlowSelector) {