mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-30 13:31:07 +01:00
Auth not supported (#94148)
This commit is contained in:
@@ -603,7 +603,7 @@ export class CodeWindow extends Disposable implements ICodeWindow {
|
||||
|| (env.https_proxy || process.env.HTTPS_PROXY || process.env.http_proxy || process.env.HTTP_PROXY || '').trim() // Not standardized.
|
||||
|| undefined;
|
||||
const newNoProxy = (env.no_proxy || env.NO_PROXY || '').trim() || undefined; // Not standardized.
|
||||
if (newHttpProxy !== this.currentHttpProxy || newNoProxy !== this.currentNoProxy) {
|
||||
if ((newHttpProxy || '').indexOf('@') === -1 && (newHttpProxy !== this.currentHttpProxy || newNoProxy !== this.currentNoProxy)) {
|
||||
this.currentHttpProxy = newHttpProxy;
|
||||
this.currentNoProxy = newNoProxy;
|
||||
const proxyRules = newHttpProxy || '';
|
||||
|
||||
Reference in New Issue
Block a user