File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ import * as configcatcommon from 'configcat-common';
9
9
import * as semver from 'semver' ;
10
10
import { ISessionService } from './services/sessionService' ;
11
11
import { ILogService } from './services/logService' ;
12
+ import { Configuration } from './configuration' ;
12
13
13
14
const EXPERTIMENTAL_SETTINGS = [
14
15
'gitpod.remote.useLocalApp' ,
@@ -25,8 +26,7 @@ export class ExperimentalSettings {
25
26
private readonly sessionService : ISessionService ,
26
27
private readonly logger : ILogService
27
28
) {
28
- const config = vscode . workspace . getConfiguration ( 'gitpod' ) ;
29
- const host = config . get < string > ( 'host' ) ;
29
+ const host = Configuration . getGitpodHost ( ) ;
30
30
31
31
this . configcatClient = configcat . createClientWithLazyLoad ( key , {
32
32
baseUrl : new URL ( '/configcat' , host ) . href ,
You can’t perform that action at this time.
0 commit comments