We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 866d75b commit 11ab9a1Copy full SHA for 11ab9a1
packages/vscode-integration/src/common/glsp-vscode-connector.ts
@@ -269,6 +269,7 @@ export class GlspVscodeConnector<D extends vscode.CustomDocument = vscode.Custom
269
dispatchAction(action: Action, clientId?: string): void {
270
const client = clientId ? this.clientMap.get(clientId) : this.getActiveClient();
271
if (!client) {
272
+ console.warn('Could not dispatch action: No client found for clientId or no active client found.', action);
273
return;
274
}
275
const message = { clientId: client.clientId, action };
0 commit comments