mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
parent
1f2a25637b
commit
c6f37d19a8
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "node-red-node-sqlite",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"description": "A sqlite node for Node-RED",
|
||||
"dependencies": {
|
||||
"sqlite3": "^5.0.2"
|
||||
|
@ -53,7 +53,10 @@ module.exports = function(RED) {
|
||||
if (node.sqlquery == "msg.topic") {
|
||||
if (typeof msg.topic === 'string') {
|
||||
if (msg.topic.length > 0) {
|
||||
bind = Array.isArray(msg.payload) ? msg.payload : [];
|
||||
if (Array.isArray(msg.payload)) {
|
||||
if (msg.payload.length === (msg.topic.split('$').length - 1) ) { bind = msg.payload; }
|
||||
else { bind = []; }
|
||||
}
|
||||
node.mydbConfig.db.all(msg.topic, bind, function(err, row) {
|
||||
if (err) { node.error(err,msg); }
|
||||
else {
|
||||
|
Loading…
Reference in New Issue
Block a user