mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 10:08:49 +01:00
Fix #76096
This commit is contained in:
@@ -562,8 +562,8 @@ export class ExtHostExtensionService implements ExtHostExtensionServiceShape {
|
||||
c();
|
||||
this._gracefulExit(0);
|
||||
})
|
||||
.catch((err) => {
|
||||
e(err);
|
||||
.catch((err: Error) => {
|
||||
e(err.toString());
|
||||
this._gracefulExit(1);
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user