Skip to content

Commit

Permalink
Fix bug with default value
Browse files Browse the repository at this point in the history
  • Loading branch information
TwitchBronBron committed Jul 5, 2023
1 parent efd2a5e commit 0f43e56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DebugConfigurationProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ export class BrightScriptDebugConfigurationProvider implements DebugConfiguratio
config.logfilePath ??= null;
config.enableDebugProtocol = config.enableDebugProtocol ? true : false;
config.cwd = folderUri.fsPath;
config.rendezvousTracking = config.rendezvousTracking === false ? false : config.rendezvousTracking;
config.rendezvousTracking = config.rendezvousTracking === false ? false : true;

if (config.request !== 'launch') {
await vscode.window.showErrorMessage(`roku-debug only supports the 'launch' request type`);
Expand Down

0 comments on commit 0f43e56

Please sign in to comment.