From c874d17cdfedfe39930a6448c259fc725f2d8c1c Mon Sep 17 00:00:00 2001 From: Rafal Chlodnicki Date: Mon, 8 Jan 2024 21:42:12 +0100 Subject: [PATCH] fix: avoid sending window/workDoneProgress/create before init --- src/ts-client.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/ts-client.ts b/src/ts-client.ts index a182ede1..0b45f7df 100644 --- a/src/ts-client.ts +++ b/src/ts-client.ts @@ -360,9 +360,6 @@ export class TsClient implements ITypeScriptServiceClient { this.serviceExited(); }); tsServer.onEvent(event => this.dispatchEvent(event)); - if (this.apiVersion.gte(API.v300) && this.capabilities.has(ClientCapability.Semantic)) { - this.loadingIndicator.startedLoadingProject(''); - } return true; }