Skip to content

Commit

Permalink
Fix error.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrstegeman committed Feb 19, 2021
1 parent 1933925 commit d417d43
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,5 +85,5 @@
}
},
"short_name": "Zigbee",
"version": "0.16.0"
"version": "0.16.1"
}
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zigbee-adapter",
"version": "0.16.0",
"version": "0.16.1",
"description": "Zigbee device support, via USB dongle or external Zigbee2MQTT instance.",
"author": "WebThingsIO",
"main": "lib/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/zb-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const zclId = require('zcl-id');
const zcl = require('zcl-packet');
const zdo = require('zigbee-zdo');
const zigbeeClassifier = require('./zb-classifier');
const ZigbeeFamily = require('./zb-family');
const ZigbeeFamily = require('./zb-family').default;

const { Device, Event, Utils } = require('gateway-addon');
const {
Expand Down

0 comments on commit d417d43

Please sign in to comment.