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 b03e59b commit 8071637Copy full SHA for 8071637
server/src/utils.ts
@@ -117,7 +117,7 @@ export let formatUsingValidBscNativePath = (
117
} catch (e) {
118
return {
119
kind: "error",
120
- error: e.message,
+ error: e instanceof Error ? e.message : String(e),
121
};
122
} finally {
123
// async close is fine. We don't use this file name again
@@ -200,7 +200,7 @@ export let createInterfaceFileUsingValidBscExePath = (
200
201
202
203
204
205
}
206
0 commit comments