提交 597caf05 编写于 作者: S Sandeep Somavarapu

Fix #31084

上级 622f2b98
......@@ -55,7 +55,7 @@ export class WorkspaceConfigurationModel<T> extends CustomConfigurationModel<T>
private parseFolders(): URI[] {
const folders: string[] = this._raw['folders'] || [];
return distinct(folders.map(folder => URI.parse(folder))
.filter(r => r.scheme === Schemas.file)); // only support files for now ;
.filter(r => r.scheme === Schemas.file), folder => folder.toString(true)); // only support files for now
}
private parseConfigurationModel(section: string): ConfigurationModel<T> {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册