proxy authentication does not work on 1.49 (#106434)

This commit is contained in:
Benjamin Pasero
2020-09-11 14:54:03 +02:00
parent bc38b0accb
commit 1fccb9e58c

View File

@@ -93,9 +93,9 @@ export class ProxyAuthHandler extends Disposable {
if (channel === 'vscode:proxyAuthResponse') {
const { username, password } = credentials;
cb(username, password);
win.removeListener('close', onWindowClose);
win.close();
}
win.removeListener('close', onWindowClose);
win.close();
});
win.loadURL(url);
}