Skip to content

Commit

Permalink
fix: Haid parameters renamed due to changed homeconnect api
Browse files Browse the repository at this point in the history
fixes #46
  • Loading branch information
alexkn committed Aug 6, 2021
1 parent d6c007d commit 36244dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nodes/home-connect-request.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ module.exports = function (RED) {
let tag = node.tag || msg.tag;
let operationId = node.operationId || msg.operationId;
let response = await node.client.apis[tag][operationId]({
haid: node.haid || msg.haid,
haId: node.haid || msg.haid,
body: node.body || msg.body,
optionkey: node.optionkey || msg.optionkey,
programkey: node.programkey || msg.programkey,
Expand Down

0 comments on commit 36244dc

Please sign in to comment.