about summary refs log tree commit diff
path: root/editors/code/src
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-05-24 08:53:55 +0000
committerGitHub <noreply@github.com>2021-05-24 08:53:55 +0000
commitca19c63f2065f9e2d5d6178f006d909d64b9c219 (patch)
tree25b8e1f83732116dbc42e8626a3351b287729e72 /editors/code/src
parent495c9586ec51e0cf9b06397d99ec4f65c55e7a28 (diff)
parentdf146341c506a0ac5cf6ac4dab012f13c479ae97 (diff)
downloadrust-ca19c63f2065f9e2d5d6178f006d909d64b9c219.tar.gz
rust-ca19c63f2065f9e2d5d6178f006d909d64b9c219.zip
Merge #8959
8959: fix: can download server binary on windows again r=matklad a=matklad

bors r+
🤖

Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
Diffstat (limited to 'editors/code/src')
-rw-r--r--editors/code/src/config.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts
index fbb7a556a86..d3d6e631a02 100644
--- a/editors/code/src/config.ts
+++ b/editors/code/src/config.ts
@@ -34,7 +34,7 @@ export class Config {
     readonly globalStoragePath: string;
 
     constructor(ctx: vscode.ExtensionContext) {
-        this.globalStoragePath = ctx.globalStorageUri.path;
+        this.globalStoragePath = ctx.globalStorageUri.fsPath;
         vscode.workspace.onDidChangeConfiguration(this.onDidChangeConfiguration, this, ctx.subscriptions);
         this.refreshLogging();
     }