Skip to content
This repository has been archived by the owner on Dec 28, 2022. It is now read-only.

Commit

Permalink
include groupID and profileID in message
Browse files Browse the repository at this point in the history
  • Loading branch information
hobbyquaker committed Nov 18, 2019
1 parent c930b84 commit 9b8337c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions nodes/event.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ module.exports = function (RED) {
cluster: message.cluster,
data: message.data,
linkquality: message.linkquality,
groupid: message.groupid
profileID: message.endpoint.profileID,
groupID: message.groupID

});
} else {
Expand All @@ -61,7 +62,8 @@ module.exports = function (RED) {
cluster: message.cluster,
data: message.data,
linkquality: message.linkquality,
groupid: message.groupid
profileID: message.endpoint.profileID,
groupID: message.groupID
});
});
}
Expand Down

0 comments on commit 9b8337c

Please sign in to comment.