mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Merge pull request #3219 from Steve-Mcl/mqtt-use-datatype
fix datatype in node config not used. fixes #3215
This commit is contained in:
commit
e57183ed0e
@ -1040,7 +1040,7 @@ module.exports = function(RED) {
|
|||||||
|
|
||||||
//subscribe to sub.topic & hook up subscriptionHandler
|
//subscribe to sub.topic & hook up subscriptionHandler
|
||||||
node.brokerConn.subscribe(sub.topic, options, function (topic, payload, packet) {
|
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.id);
|
||||||
node.dynamicSubs[sub.topic] = sub; //save for later unsubscription & 'list' action
|
node.dynamicSubs[sub.topic] = sub; //save for later unsubscription & 'list' action
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user