Skip to content

Commit

Permalink
fix: Use fsPath when working with files
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Feb 21, 2020
1 parent e7545c3 commit 808538f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/_server/src/documentSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ function createWorkspaceNamesFilePathResolver(folder: WorkspaceFolder, folders:
function toFolderPath(w: WorkspaceFolder): FolderPath {
return {
name: w.name,
path: Uri.parse(w.uri).path
path: Uri.parse(w.uri).fsPath
};
}
return createWorkspaceNameToPathResolver(
Expand Down

0 comments on commit 808538f

Please sign in to comment.