File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import * as vscode from 'vscode';
77import * as configcat from 'configcat-node' ;
88import * as configcatcommon from 'configcat-common' ;
99import * as semver from 'semver' ;
10+ import * as os from 'os' ;
1011import { ISessionService } from './services/sessionService' ;
1112import { ILogService } from './services/logService' ;
1213import { IHostService } from './services/hostService' ;
@@ -145,7 +146,7 @@ export class ExperimentalSettings extends Disposable implements IExperimentsServ
145146 * @see https://app.configcat.com/08da1258-64fb-4a8e-8a1e-51de773884f6/08da1258-6541-4fc7-8b61-c8b47f82f3a0/08da1258-6512-4ec0-80a3-3f6aa301f853?settingId=75503
146147 */
147148 async getUseLocalSSHProxy ( ) : Promise < boolean > {
148- return ( await this . getRaw < boolean > ( 'gitpod_desktop_use_local_ssh_proxy' , { } ) ) ?? false ;
149+ return ( await this . getRaw < boolean > ( 'gitpod_desktop_use_local_ssh_proxy' , { 'platform' : os . platform ( ) } ) ) ?? false ;
149150 }
150151
151152 async getUsePublicAPI ( gitpodHost : string ) : Promise < boolean > {
You can’t perform that action at this time.
0 commit comments