@context-engine-bridge/context-engine-mcp-bridge 0.0.38 → 0.0.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/mcpServer.js +1 -1
package/package.json
CHANGED
package/src/mcpServer.js
CHANGED
|
@@ -187,8 +187,8 @@ async function _enrichWithLsp(result, lspConn, workspace) {
|
|
|
187
187
|
debugLog("[ctxce] LSP enrich: JSON parse failed: " + String(e));
|
|
188
188
|
return result;
|
|
189
189
|
}
|
|
190
|
-
if (!parsed.ok) return result;
|
|
191
190
|
const target = _lspTarget(parsed);
|
|
191
|
+
if (!target.ok) return result;
|
|
192
192
|
target._lsp_status = await _resolveLspStatus(target, lspConn, workspace);
|
|
193
193
|
textBlock.text = JSON.stringify(parsed);
|
|
194
194
|
return result;
|