Skip to content

Commit e34a260

Browse files
authored
Merge pull request microsoft#191607 from microsoft/sandy081/required-lynx
fix microsoft#191374
2 parents 35be9bf + 24946e7 commit e34a260

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/vs/platform/environment/electron-main/environmentMainService.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import { memoize } from 'vs/base/common/decorators';
77
import { join } from 'vs/base/common/path';
88
import { isLinux } from 'vs/base/common/platform';
9+
import { URI } from 'vs/base/common/uri';
910
import { createStaticIPCHandle } from 'vs/base/parts/ipc/node/ipc.net';
1011
import { IEnvironmentService, INativeEnvironmentService } from 'vs/platform/environment/common/environment';
1112
import { NativeEnvironmentService } from 'vs/platform/environment/node/environmentService';
@@ -68,6 +69,9 @@ export class EnvironmentMainService extends NativeEnvironmentService implements
6869
@memoize
6970
get useCodeCache(): boolean { return !!this.codeCachePath; }
7071

72+
@memoize
73+
override get userRoamingDataHome(): URI { return this.appSettingsHome; }
74+
7175
unsetSnapExportedVariables() {
7276
if (!isLinux) {
7377
return;

0 commit comments

Comments
 (0)