Skip to content

Commit

Permalink
Hide the debug protocol popup, telnet by default
Browse files Browse the repository at this point in the history
  • Loading branch information
TwitchBronBron committed Nov 27, 2023
1 parent 0772571 commit a3836d5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/DebugConfigurationProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,10 @@ export class BrightScriptDebugConfigurationProvider implements DebugConfiguratio
throw new Error(`Cannot deploy: developer mode is disabled on '${result.host}'`);
}

result = await this.processEnableDebugProtocolParameter(result, deviceInfo);
//TODO re-enable once we've fixed some of the debug protocol issues
// result = await this.processEnableDebugProtocolParameter(result, deviceInfo);

result.enableDebugProtocol ??= this.configDefaults.enableDebugProtocol;

await this.context.workspaceState.update('enableDebuggerAutoRecovery', result.enableDebuggerAutoRecovery);

Expand All @@ -132,7 +135,7 @@ export class BrightScriptDebugConfigurationProvider implements DebugConfiguratio
}
}

private async processEnableDebugProtocolParameter(config: BrightScriptLaunchConfiguration, deviceInfo: DeviceInfo) {
protected async processEnableDebugProtocolParameter(config: BrightScriptLaunchConfiguration, deviceInfo: DeviceInfo) {
if (config.enableDebugProtocol !== undefined || !semver.gte(deviceInfo?.softwareVersion ?? '0.0.0', '12.5.0')) {
config.enableDebugProtocol = config.enableDebugProtocol ? true : false;
return config;
Expand Down

0 comments on commit a3836d5

Please sign in to comment.