Implemented RED.util.setMessageProperty

pull/2435/head
Paul Wieland 2020-01-23 11:23:02 -05:00
parent 2cbf625483
commit 82490b0a58
1 changed files with 1 additions and 1 deletions

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);
}