From 080d9f29e9a8e4f240c9887ee8404e37249bbaea Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 4 Aug 2020 08:50:22 -0400 Subject: [PATCH] update jslib --- jslib | 2 +- src/commands/login.command.ts | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/jslib b/jslib index 7d49902eea..bc31867e1a 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 7d49902eea45275d50c949beec32b3ab5b7db725 +Subproject commit bc31867e1a8ff4a85f59163889da5801db0ce25a diff --git a/src/commands/login.command.ts b/src/commands/login.command.ts index 86d28786ca..8efb9faf7a 100644 --- a/src/commands/login.command.ts +++ b/src/commands/login.command.ts @@ -22,8 +22,7 @@ export class LoginCommand extends BaseLoginCommand { i18nService: I18nService, environmentService: EnvironmentService, passwordGenerationService: PasswordGenerationService) { super(authService, apiService, i18nService, environmentService, passwordGenerationService, - cryptoFunctionService); - this.clientId = 'cli'; + cryptoFunctionService, 'cli'); this.validatedParams = async () => { const key = await cryptoFunctionService.randomBytes(64); process.env.BW_SESSION = Utils.fromBufferToB64(key);