1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-12-01 04:43:29 +03:00

define this.identityServer

This commit is contained in:
Travis Ralston
2021-05-31 22:56:40 -06:00
parent 486369e97c
commit 4ef50bef55

View File

@@ -383,6 +383,7 @@ export class MatrixClient extends EventEmitter {
public timelineSupport = false;
public urlPreviewCache: { [key: string]: Promise<unknown> } = {}; // TODO: @@TR
public unstableClientRelationAggregation = false;
public identityServer: IIdentityServerProvider;
private canSupportVoip = false;
private callEventHandler: CallEventHandler;
@@ -427,7 +428,6 @@ export class MatrixClient extends EventEmitter {
private exportedOlmDeviceToImport: IOlmDevice;
private baseUrl: string;
private idBaseUrl: string;
private identityServer: any; // TODO: @@TR
private http: MatrixHttpApi;
private txnCtr = 0;