From 28d1f0f1d7b905ae504eb774ce1c30145fb08a92 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Tue, 14 Sep 2021 18:50:25 +0200 Subject: [PATCH] enforce API as proposed, https://github.com/microsoft/vscode/issues/111371 fyi @chrmarti --- src/vs/workbench/api/common/extHost.api.impl.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/workbench/api/common/extHost.api.impl.ts b/src/vs/workbench/api/common/extHost.api.impl.ts index 610aca22f35..166b8df6f2b 100644 --- a/src/vs/workbench/api/common/extHost.api.impl.ts +++ b/src/vs/workbench/api/common/extHost.api.impl.ts @@ -333,6 +333,7 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I return getRemoteName(initData.remote.authority); }, get remoteAuthority() { + checkProposedApiEnabled(extension); return initData.remote.authority; }, get uiKind() { -- GitLab