mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-15 07:28:05 +00:00
fix state resource file name
This commit is contained in:
@@ -60,7 +60,7 @@ export abstract class AbstractNativeEnvironmentService implements INativeEnviron
|
||||
get cacheHome(): URI { return URI.file(this.userDataPath); }
|
||||
|
||||
@memoize
|
||||
get stateResource(): URI { return joinPath(this.appSettingsHome, 'globalStorage', 'state.json'); }
|
||||
get stateResource(): URI { return joinPath(this.appSettingsHome, 'globalStorage', 'storage.json'); }
|
||||
|
||||
@memoize
|
||||
get userRoamingDataHome(): URI { return this.appSettingsHome; }
|
||||
|
||||
@@ -68,7 +68,7 @@ export class BrowserWorkbenchEnvironmentService implements IBrowserWorkbenchEnvi
|
||||
get localHistoryHome(): URI { return joinPath(this.userRoamingDataHome, 'History'); }
|
||||
|
||||
@memoize
|
||||
get stateResource(): URI { return joinPath(this.userRoamingDataHome, 'State', 'state.json'); }
|
||||
get stateResource(): URI { return joinPath(this.userRoamingDataHome, 'State', 'storage.json'); }
|
||||
|
||||
/**
|
||||
* In Web every workspace can potentially have scoped user-data
|
||||
|
||||
Reference in New Issue
Block a user