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';
7
7
import * as configcat from 'configcat-node' ;
8
8
import * as configcatcommon from 'configcat-common' ;
9
9
import * as semver from 'semver' ;
10
+ import * as os from 'os' ;
10
11
import { ISessionService } from './services/sessionService' ;
11
12
import { ILogService } from './services/logService' ;
12
13
import { IHostService } from './services/hostService' ;
@@ -145,7 +146,7 @@ export class ExperimentalSettings extends Disposable implements IExperimentsServ
145
146
* @see https://app.configcat.com/08da1258-64fb-4a8e-8a1e-51de773884f6/08da1258-6541-4fc7-8b61-c8b47f82f3a0/08da1258-6512-4ec0-80a3-3f6aa301f853?settingId=75503
146
147
*/
147
148
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 ;
149
150
}
150
151
151
152
async getUsePublicAPI ( gitpodHost : string ) : Promise < boolean > {
You can’t perform that action at this time.
0 commit comments