Skip to content

Commit fcff1c4

Browse files
committed
fixes #82359
1 parent 63e546d commit fcff1c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/services/extensions/node/extensionPoints.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class ExtensionManifestParser extends ExtensionManifestHandler {
5151
return pfs.readFile(this._absoluteManifestPath).then((manifestContents) => {
5252
const errors: json.ParseError[] = [];
5353
const manifest = json.parse(manifestContents.toString(), errors);
54-
if (errors.length === 0) {
54+
if (!!manifest && errors.length === 0) {
5555
if (manifest.__metadata) {
5656
manifest.uuid = manifest.__metadata.id;
5757
}

0 commit comments

Comments
 (0)