Skip to content

Commit 95c51d8

Browse files
Don't use a deprecated accessor
1 parent 230ed33 commit 95c51d8

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.globalStoragePath;
37+
this.globalStoragePath = ctx.globalStorageUri.path;
3838
vscode.workspace.onDidChangeConfiguration(this.onDidChangeConfiguration, this, ctx.subscriptions);
3939
this.refreshLogging();
4040
}

0 commit comments

Comments
 (0)