diff --git a/jslib b/jslib index 54f407d0..462a4d7c 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 54f407d0de3ee0d38ba6b414da388cfd6bc57001 +Subproject commit 462a4d7c56084c8bb9c06b9696f708bf796f4772 diff --git a/src/services/keyConnector.service.ts b/src/services/keyConnector.service.ts index 20374f9b..59285b8e 100644 --- a/src/services/keyConnector.service.ts +++ b/src/services/keyConnector.service.ts @@ -40,7 +40,7 @@ export class KeyConnectorService extends BaseKeyConnectorService { ); } - async getUserKeyFromKeyConnector(url: string): Promise { + protected async getUserKeyFromKeyConnector(url: string): Promise { if (this.platformUtilsService.isSelfHost()) { return super.getUserKeyFromKeyConnector(url); } @@ -51,7 +51,10 @@ export class KeyConnectorService extends BaseKeyConnectorService { return frame.promise.then((key: string) => new KeyConnectorUserKeyResponse({ Key: key })); } - async postUserKeyToKeyConnector(url: string, request: KeyConnectorUserKeyRequest): Promise { + protected async postUserKeyToKeyConnector( + url: string, + request: KeyConnectorUserKeyRequest + ): Promise { if (this.platformUtilsService.isSelfHost()) { return super.postUserKeyToKeyConnector(url, request); }