inline product configuration in produt service

This commit is contained in:
Sandeep Somavarapu
2019-08-15 16:03:41 +02:00
parent 926e27cb4f
commit 8095541d7d
31 changed files with 94 additions and 126 deletions

View File

@@ -327,7 +327,7 @@ export class MainThreadWebviews extends Disposable implements MainThreadWebviews
if (MainThreadWebviews.standardSupportedLinkSchemes.has(link.scheme)) {
return true;
}
if (this._productService.productConfiguration.urlProtocol === link.scheme) {
if (this._productService.urlProtocol === link.scheme) {
return true;
}
return !!webview.webview.contentOptions.enableCommandUris && link.scheme === 'command';