Skip to content

Commit 10530a7

Browse files
committed
💄
1 parent 2706e33 commit 10530a7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/services/hostService.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ export class HostService extends Disposable implements IHostService {
4545
this._register(vscode.workspace.onDidChangeConfiguration(e => {
4646
if (e.affectsConfiguration('gitpod.host')) {
4747
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+
}
5353
const newGitpodHost = Configuration.getGitpodHost();
5454
if (new URL(this._gitpodHost).host !== new URL(newGitpodHost).host) {
5555
this._gitpodHost = newGitpodHost;

src/services/logService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ export interface ILogService {
1010
warn(message: string, ...args: any[]): void;
1111
error(error: string | Error, ...args: any[]): void;
1212

13-
show():void;
13+
show(): void;
1414
}

0 commit comments

Comments
 (0)