zigbee-herdsman-converters 15.58.0 → 15.58.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/converters/fromZigbee.js +1 -1
- package/converters/fromZigbee.js.map +1 -1
- package/devices/tuya.js +1 -1
- package/devices/tuya.js.map +1 -1
- package/devices/xiaomi.js +1 -0
- package/devices/xiaomi.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [15.58.1](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v15.58.0...v15.58.1) (2023-08-18)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **detect:** Detect all `TS0225` as supported https://github.com/Koenkk/zigbee2mqtt/issues/18612 ([126c55e](https://github.com/Koenkk/zigbee-herdsman-converters/commit/126c55eae80d78cf270e8c616909e53c59c1844c))
|
|
9
|
+
* Fix `Cannot read properties of undefined (reading 'hasOwnProperty')}` error for some Schneider Electric devices. https://github.com/Koenkk/zigbee2mqtt/issues/18656 ([5e8130b](https://github.com/Koenkk/zigbee-herdsman-converters/commit/5e8130b60c502793344b0df136a2648bcf399b33))
|
|
10
|
+
* Fix OTA upgrade not working for Xiaomi ZNCLBL01LM https://github.com/Koenkk/zigbee2mqtt/discussions/18651 ([7c94ab7](https://github.com/Koenkk/zigbee-herdsman-converters/commit/7c94ab7535c74c4d5dc9271e58532ca6f4aa9694))
|
|
11
|
+
|
|
3
12
|
## [15.58.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v15.57.0...v15.58.0) (2023-08-17)
|
|
4
13
|
|
|
5
14
|
|
package/converters/fromZigbee.js
CHANGED
|
@@ -727,7 +727,7 @@ const converters = {
|
|
|
727
727
|
type: ['attributeReport', 'readResponse'],
|
|
728
728
|
convert: (model, msg, publish, options, meta) => {
|
|
729
729
|
const result = converters.metering.convert(model, msg, publish, options, meta);
|
|
730
|
-
if (result.hasOwnProperty('power')) {
|
|
730
|
+
if (result && result.hasOwnProperty('power')) {
|
|
731
731
|
result.power /= 1000;
|
|
732
732
|
}
|
|
733
733
|
return result;
|