From 1c9b5eb42d99ddcc8ac04c9f8fed0ca1a5dd2a67 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Mon, 25 May 2020 16:14:51 -0600 Subject: [PATCH] Appease the tests --- src/MatrixClientPeg.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/MatrixClientPeg.ts b/src/MatrixClientPeg.ts index ab19295263..ff0750c501 100644 --- a/src/MatrixClientPeg.ts +++ b/src/MatrixClientPeg.ts @@ -120,7 +120,7 @@ class _MatrixClientPeg implements IMatrixClientPeg { initialSyncLimit: 20, }; - private matrixClient: MatrixClient; + private matrixClient: MatrixClient = null; private justRegisteredUserId: string; // the credentials used to init the current client object. @@ -157,7 +157,7 @@ class _MatrixClientPeg implements IMatrixClientPeg { public replaceUsingCreds(creds: IMatrixClientCreds): void { this.currentClientCreds = creds; - this._createClient(creds); + this.createClient(creds); } public async assign(): Promise { @@ -245,7 +245,7 @@ class _MatrixClientPeg implements IMatrixClientPeg { return matches[1]; } - private _createClient(creds: IMatrixClientCreds): void { + private createClient(creds: IMatrixClientCreds): void { // TODO: Make these opts typesafe with the js-sdk const opts = { baseUrl: creds.homeserverUrl,