@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ejfdelgado/ejflab-back",
3
- "version": "1.6.4",
3
+ "version": "1.6.5",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/ejfdelgado/ejflab-back.git"
@@ -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
  }