We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e89bd3 commit dbbc064Copy full SHA for dbbc064
1 file changed
extensions/git/src/askpass.ts
@@ -42,7 +42,10 @@ export class Askpass implements Disposable {
42
43
constructor() {
44
this.server = http.createServer((req, res) => this.onRequest(req, res));
45
- this.ipcHandlePathPromise = this.setup().catch(err => console.error(err));
+ this.ipcHandlePathPromise = this.setup().catch(err => {
46
+ console.error(err);
47
+ return '';
48
+ });
49
}
50
51
private async setup(): Promise<string> {
0 commit comments