fix: can download server binary on windows again

Closes #8956

See https://github.com/rust-analyzer/rust-analyzer/pull/8951#issuecomment-846716999
This commit is contained in:
Aleksey Kladov 2021-05-24 11:52:25 +03:00
parent 495c9586ec
commit df146341c5

View File

@ -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();
}