@typed-assistant/builder 0.0.67 → 0.0.68
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/setupWebserver.tsx +9 -11
package/package.json
CHANGED
package/src/setupWebserver.tsx
CHANGED
|
@@ -299,17 +299,6 @@ export const startWebappServer = async ({
|
|
|
299
299
|
const convertedMessage = convert.toHtml(decodedString)
|
|
300
300
|
if (convertedMessage !== "") {
|
|
301
301
|
lastMessage = convertedMessage
|
|
302
|
-
logger.fatal(
|
|
303
|
-
{
|
|
304
|
-
emoji: "💀",
|
|
305
|
-
additionalDetails: JSON.stringify(
|
|
306
|
-
{ exitCode: getSubprocesses().app.exitCode },
|
|
307
|
-
null,
|
|
308
|
-
2,
|
|
309
|
-
),
|
|
310
|
-
},
|
|
311
|
-
"Process is returning an empty string",
|
|
312
|
-
)
|
|
313
302
|
}
|
|
314
303
|
if (convertedMessage === "") {
|
|
315
304
|
subscribers.forEach((send) =>
|
|
@@ -318,6 +307,15 @@ export const startWebappServer = async ({
|
|
|
318
307
|
lastMessage,
|
|
319
308
|
),
|
|
320
309
|
)
|
|
310
|
+
logger.fatal(
|
|
311
|
+
{
|
|
312
|
+
emoji: "💀",
|
|
313
|
+
additionalDetails: JSON.stringify({
|
|
314
|
+
exitCode: getSubprocesses().app.exitCode,
|
|
315
|
+
}),
|
|
316
|
+
},
|
|
317
|
+
"Process is returning an empty string",
|
|
318
|
+
)
|
|
321
319
|
await new Promise((resolve) => setTimeout(resolve, 1000))
|
|
322
320
|
continue
|
|
323
321
|
}
|