We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b8fd6e commit 1eabca5Copy full SHA for 1eabca5
extensions/typescript-language-features/src/extension.browser.ts
@@ -108,7 +108,7 @@ async function preload(logger: Logger): Promise<void> {
108
}
109
110
const workspaceUri = vscode.workspace.workspaceFolders?.[0].uri;
111
- if (!workspaceUri || workspaceUri.scheme !== 'vscode-vfs' || workspaceUri.authority !== 'github') {
+ if (!workspaceUri || workspaceUri.scheme !== 'vscode-vfs' || !workspaceUri.authority.startsWith('github')) {
112
logger.info(`Skipped loading workspace contents for repository ${workspaceUri?.toString()}`);
113
return;
114
0 commit comments