@ejfdelgado/ejflab-back 1.6.4 → 1.6.5
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/srv/SocketIOCall.mjs +3 -1
package/package.json
CHANGED
package/srv/SocketIOCall.mjs
CHANGED
@@ -350,7 +350,9 @@ export class SocketIOCall {
|
|
350
350
|
|
351
351
|
static handle(io) {
|
352
352
|
SocketIOCall.io = io;
|
353
|
-
SocketIOCall.getFlowChartExec("processors")
|
353
|
+
SocketIOCall.getFlowChartExec("processors").catch((err) => {
|
354
|
+
console.log("Warning: flowchart capability not configured. "+err.message);
|
355
|
+
});
|
354
356
|
io.on("connection", SocketIOCall.connect);
|
355
357
|
return () => { }
|
356
358
|
}
|