mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
Fix for when after from function or change is an array
This commit is contained in:
@@ -209,7 +209,7 @@ module.exports = function(RED) {
|
||||
try {
|
||||
this.on("input", function(msg) {
|
||||
try {
|
||||
const payloadValidator = new PayloadValidator(msg)
|
||||
const payloadValidator = new PayloadValidator(msg, this.id)
|
||||
var start = process.hrtime();
|
||||
sandbox.msg = msg;
|
||||
const vm2Instance = new vm2.VM({ sandbox, timeout: 5000 });
|
||||
|
||||
Reference in New Issue
Block a user