We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd38eee commit 7149607Copy full SHA for 7149607
src/packageManager/proxy.ts
@@ -21,7 +21,7 @@ function getSystemProxyURL(requestURL: Url): string | undefined {
21
export function getProxyAgent(requestURL: Url, proxy: string, strictSSL: boolean): Agent | undefined {
22
const proxyURL = proxy.length > 0 ? proxy : getSystemProxyURL(requestURL);
23
24
- if (proxyURL === undefined) {
+ if (proxyURL === undefined || proxyURL.length === 0) {
25
return undefined;
26
}
27
0 commit comments