@5minds/node-red-contrib-processcube 0.5.2 → 0.5.3

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@5minds/node-red-contrib-processcube",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "license": "MIT",
5
5
  "description": "Node-RED nodes for ProcessCube",
6
6
  "authors": [
package/usertask-input.js CHANGED
@@ -56,7 +56,7 @@ module.exports = function(RED) {
56
56
 
57
57
  node.send({ payload: {userTask: userTask } });
58
58
  } else {
59
- if (config.config.force_send_array == false) {
59
+ if (config.force_send_array == false) {
60
60
  if (config.multisend && matchingFlowNodes.userTasks && matchingFlowNodes.userTasks.length > 1) {
61
61
  matchingFlowNodes.userTasks.forEach((userTask) => {
62
62
  node.send({ payload: { userTask: userTask } });