Skip to content

Commit df14634

Browse files
committed
fix: can download server binary on windows again
Closes #8956 See #8951 (comment)
1 parent 495c958 commit df14634

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editors/code/src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class Config {
3434
readonly globalStoragePath: string;
3535

3636
constructor(ctx: vscode.ExtensionContext) {
37-
this.globalStoragePath = ctx.globalStorageUri.path;
37+
this.globalStoragePath = ctx.globalStorageUri.fsPath;
3838
vscode.workspace.onDidChangeConfiguration(this.onDidChangeConfiguration, this, ctx.subscriptions);
3939
this.refreshLogging();
4040
}

0 commit comments

Comments
 (0)