fix compilations

This commit is contained in:
Sandeep Somavarapu
2019-02-13 14:02:47 +01:00
parent 73ec6713e9
commit f43423e401
2 changed files with 2 additions and 2 deletions

View File

@@ -162,7 +162,7 @@ export class Main {
}
const manifest = await this.extensionGalleryService.getManifest(extension, CancellationToken.None);
if (this.remote && isUIExtension(manifest, this.configurationService)) {
if (this.remote && manifest && isUIExtension(manifest, this.configurationService)) {
console.log(localize('notSupportedUIExtension', "Can't install extension {0} since UI Extensions are not supported", extension.identifier.id));
return null;
}