Skip to content

Commit

Permalink
Make sure we pass along windows style paths to pluginProbeLocations (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
mjbvz authored Feb 9, 2022
1 parent 108f78f commit 8aadcb6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ export class TypeScriptServerSpawner {
const isUsingBundledTypeScriptVersion = currentVersion.path === this._versionProvider.defaultVersion.path;
for (const plugin of pluginManager.plugins) {
if (isUsingBundledTypeScriptVersion || plugin.enableForWorkspaceTypeScriptVersions) {
pluginPaths.push(isWeb() ? plugin.uri.toString() : plugin.uri.path);
pluginPaths.push(isWeb() ? plugin.uri.toString() : plugin.uri.fsPath);
}
}
}
Expand Down

0 comments on commit 8aadcb6

Please sign in to comment.