@lousy-agents/mcp 5.14.2 → 5.14.3
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/dist/mcp-server.js +2 -3
- package/package.json +1 -1
package/dist/mcp-server.js
CHANGED
|
@@ -27029,10 +27029,9 @@ function getFsSafePythonConfig() {
|
|
|
27029
27029
|
};
|
|
27030
27030
|
}
|
|
27031
27031
|
function canFallbackFromPythonError(error) {
|
|
27032
|
+
const code = error instanceof Error && "code" in error ? error.code : undefined;
|
|
27032
27033
|
return (getFsSafePythonConfig().mode !== "require" &&
|
|
27033
|
-
|
|
27034
|
-
"code" in error &&
|
|
27035
|
-
error.code === "helper-unavailable");
|
|
27034
|
+
(code === "helper-unavailable" || code === "unsupported-platform"));
|
|
27036
27035
|
}
|
|
27037
27036
|
|
|
27038
27037
|
// EXTERNAL MODULE: external "node:child_process"
|