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

fix datatype in node config not used. fixes #3215

This commit is contained in:
Steve-Mcl 2021-10-24 22:21:44 +01:00
parent 7560bb8d7b
commit 153f87704b

View File

@ -1040,7 +1040,7 @@ module.exports = function(RED) {
//subscribe to sub.topic & hook up subscriptionHandler
node.brokerConn.subscribe(sub.topic, options, function (topic, payload, packet) {
subscriptionHandler(node, sub.datatype, topic, payload, packet);
subscriptionHandler(node, sub.datatype || node.datatype, topic, payload, packet);
}, node.id);
node.dynamicSubs[sub.topic] = sub; //save for later unsubscription & 'list' action
})