Skip to content

Commit

Permalink
proxy authentication does not work on 1.49 (#106434) (#106490)
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Sep 11, 2020
1 parent e790b93 commit 0bff53b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vs/code/electron-main/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,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);
}
Expand Down

0 comments on commit 0bff53b

Please sign in to comment.