提交 556410c7 编写于 作者: B Benjamin Pasero

Freezes when Chrome generates userDataDir in workspace (fixes #14301)

上级 fd2f794b
...@@ -212,7 +212,10 @@ export class WorkspaceConfigurationService implements IWorkspaceConfigurationSer ...@@ -212,7 +212,10 @@ export class WorkspaceConfigurationService implements IWorkspaceConfigurationSer
} }
// outside my folder or not a *.json file // outside my folder or not a *.json file
if (paths.extname(workspacePath) !== '.json' || !paths.isEqualOrParent(workspacePath, this.workspaceSettingsRootFolder)) { if (
paths.extname(workspacePath) !== '.json' || // we only care about *.json files
paths.dirname(workspacePath) !== this.workspaceSettingsRootFolder // which are top level in .vscode
) {
continue; continue;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册