Skip to content

Commit 3e29353

Browse files
Fix USB Reset Options (#295)
Fixes : #294 (hopefully)
1 parent e0373b7 commit 3e29353

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# node-red-contrib-zwave-js Change Log
22

3+
- 9.1.2
4+
5+
**Bug Fixes**
6+
- Fix Handling USB reset options correctly
7+
38
- 9.1.1
49

510
**Bug Fixes**

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-red-contrib-zwave-js",
3-
"version": "9.1.1",
3+
"version": "9.1.2",
44
"license": "MIT",
55
"description": "The most powerful, high performing and highly polished Z-Wave node for Node-RED based on Z-Wave JS. If you want a fully featured Z-Wave framework in your Node-RED instance, you have found it.",
66
"dependencies": {

zwave-js/zwave-js.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ module.exports = function (RED) {
348348
'[options] [features.softReset]',
349349
'Disabled'
350350
);
351-
DriverOptions.features.softReset = true;
351+
DriverOptions.features.softReset = false;
352352
}
353353

354354
DriverOptions.storage = {};

0 commit comments

Comments
 (0)