1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Implemented RED.util.setMessageProperty

This commit is contained in:
Paul Wieland 2020-01-23 11:23:02 -05:00
parent 2cbf625483
commit 82490b0a58

View File

@ -87,7 +87,7 @@ module.exports = function(RED) {
if (!property) return;
try {
msg[property] = RED.util.evaluateNodeProperty(value, valueType, this, msg);
RED.util.setMessageProperty(msg,property,RED.util.evaluateNodeProperty(value, valueType, this, msg),true);
} catch (err) {
errors.push(err);
}