Skip to content

Commit

Permalink
Fix onConfigurationChanged event triggering
Browse files Browse the repository at this point in the history
  • Loading branch information
davelopez committed Dec 4, 2023
1 parent daaf08c commit c434abd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/packages/server-common/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class GalaxyWorkflowLanguageServerImpl implements GalaxyWorkflowLanguageS
}

private async initialize(params: InitializeParams): Promise<InitializeResult> {
this.configService.initialize(params.capabilities, this.onConfigurationChanged);
this.configService.initialize(params.capabilities, () => this.onConfigurationChanged());
this.workspaceFolders = params.workspaceFolders;

const capabilities: ServerCapabilities = {
Expand Down

0 comments on commit c434abd

Please sign in to comment.