diff --git a/extensions/mssql/src/sqlToolsServer.ts b/extensions/mssql/src/sqlToolsServer.ts index 53a1371ce8..1b83127969 100644 --- a/extensions/mssql/src/sqlToolsServer.ts +++ b/extensions/mssql/src/sqlToolsServer.ts @@ -96,7 +96,7 @@ export class SqlToolsServer { this.config = JSON.parse(rawConfig.toString()); this.config.installDirectory = path.join(configDir, this.config.installDirectory); this.config.proxy = vscode.workspace.getConfiguration('http').get('proxy'); - this.config.strictSSL = vscode.workspace.getConfiguration('http').get('proxyStrictSSL') || true; + this.config.strictSSL = vscode.workspace.getConfiguration('http').get('proxyStrictSSL', true); return getOrDownloadServer(this.config, handleServerProviderEvent); }