From 1a1320e5893bc44eedefc45e69c4b80d195330de Mon Sep 17 00:00:00 2001 From: fumer-fubotv <89787347+fumer-fubotv@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:29:55 -0700 Subject: [PATCH] Update BrightScriptCommands.ts --- src/BrightScriptCommands.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/BrightScriptCommands.ts b/src/BrightScriptCommands.ts index 71598b14..ec94dda2 100644 --- a/src/BrightScriptCommands.ts +++ b/src/BrightScriptCommands.ts @@ -411,8 +411,9 @@ export class BrightScriptCommands { return this.workspacePath; } - public async getSigningPassword(showPrompt = true) { - let signingPassword = await this.context.workspaceState.get('signingPassword'); + public async getSigningPassword(showPrompt = true): Promise { + let signingPassword = ''; + signingPassword = await this.context.workspaceState.get('signingPassword'); if (!signingPassword) { let config = vscode.workspace.getConfiguration('brightscript.remoteControl', null); signingPassword = config.get('signingPassword');