File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -45,11 +45,11 @@ export class HostService extends Disposable implements IHostService {
45
45
this . _register ( vscode . workspace . onDidChangeConfiguration ( e => {
46
46
if ( e . affectsConfiguration ( 'gitpod.host' ) ) {
47
47
if ( e . affectsConfiguration ( '[javascript]' ) && e . affectsConfiguration ( '[markdown]' ) ) {
48
- // Seems onDidChangeConfiguration fires many times while resolving the remote (once with all settings),
49
- // and because now we active the extension earlier with onResolveRemoteAuthority we get this false positive
50
- // event, so ignore it if more settings are affected at the same time.
51
- return ;
52
- }
48
+ // Seems onDidChangeConfiguration fires many times while resolving the remote (once with all settings),
49
+ // and because now we active the extension earlier with onResolveRemoteAuthority we get this false positive
50
+ // event, so ignore it if more settings are affected at the same time.
51
+ return ;
52
+ }
53
53
const newGitpodHost = Configuration . getGitpodHost ( ) ;
54
54
if ( new URL ( this . _gitpodHost ) . host !== new URL ( newGitpodHost ) . host ) {
55
55
this . _gitpodHost = newGitpodHost ;
Original file line number Diff line number Diff line change @@ -10,5 +10,5 @@ export interface ILogService {
10
10
warn ( message : string , ...args : any [ ] ) : void ;
11
11
error ( error : string | Error , ...args : any [ ] ) : void ;
12
12
13
- show ( ) :void ;
13
+ show ( ) : void ;
14
14
}
You can’t perform that action at this time.
0 commit comments