Skip to content

Commit

Permalink
fix(write): type instead of tag for values
Browse files Browse the repository at this point in the history
  • Loading branch information
biancode committed Apr 24, 2018
1 parent 7fae2be commit dc92ad9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bacnet-write.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ module.exports = function (RED) {
index: node.arrayIndex
},
value: [{
tag: node.valueTag,
type: node.valueTag,
value: node.valueValue
}],
priority: node.priority
Expand Down Expand Up @@ -90,7 +90,7 @@ module.exports = function (RED) {
}

let defaultValues = [{
tag: node.valueTag,
type: node.valueTag,
value: node.valueValue
}]

Expand Down

0 comments on commit dc92ad9

Please sign in to comment.