Skip to content

Commit 1df4b3c

Browse files
authored
Adopt StorageScope.Application (microsoft#153297)
Adopt `StorageScope.Application` (microsoft#152679)
1 parent 691bcec commit 1df4b3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/workbench/services/integrity/electron-sandbox/integrityService.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class IntegrityStorage {
3333
}
3434

3535
private _read(): IStorageData | null {
36-
const jsonValue = this.storageService.get(IntegrityStorage.KEY, StorageScope.PROFILE);
36+
const jsonValue = this.storageService.get(IntegrityStorage.KEY, StorageScope.APPLICATION);
3737
if (!jsonValue) {
3838
return null;
3939
}
@@ -50,7 +50,7 @@ class IntegrityStorage {
5050

5151
set(data: IStorageData | null): void {
5252
this.value = data;
53-
this.storageService.store(IntegrityStorage.KEY, JSON.stringify(this.value), StorageScope.PROFILE, StorageTarget.MACHINE);
53+
this.storageService.store(IntegrityStorage.KEY, JSON.stringify(this.value), StorageScope.APPLICATION, StorageTarget.MACHINE);
5454
}
5555
}
5656

0 commit comments

Comments
 (0)