提交 dbbc064c 编写于 作者: J Joao Moreno

fixes #30214

上级 1e89bd3c
......@@ -42,7 +42,10 @@ export class Askpass implements Disposable {
constructor() {
this.server = http.createServer((req, res) => this.onRequest(req, res));
this.ipcHandlePathPromise = this.setup().catch(err => console.error(err));
this.ipcHandlePathPromise = this.setup().catch(err => {
console.error(err);
return '';
});
}
private async setup(): Promise<string> {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册