@5minds/node-red-contrib-processcube 0.5.5-develop-182b6c-lxryyk0h → 0.5.6-develop-a98283-lxrzpgvk
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/usertask-input.js +1 -1
package/package.json
CHANGED
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.force_send_array
|
59
|
+
if (!config.force_send_array) {
|
60
60
|
if (config.multisend && matchingFlowNodes.userTasks && matchingFlowNodes.userTasks.length > 1) {
|
61
61
|
matchingFlowNodes.userTasks.forEach((userTask) => {
|
62
62
|
node.send({ payload: { userTask: userTask } });
|