Skip to content

Commit

Permalink
(simatec) Beta 2.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
simatec committed Nov 29, 2023
1 parent 882de8e commit 590d74e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ When the adapter crashes or another Code error happens, this error message that

## Changelog
<!-- ### **WORK IN PROGRESS** -->
### **WORK IN PROGRESS**
* (simatec) dependencies updated
* (simatec) Fix redis Password

### 2.9.4 (2023-11-20)
* (simatec) dependencies updated
* (simatec) Fix CIFS Password
Expand Down
1 change: 0 additions & 1 deletion json

This file was deleted.

2 changes: 1 addition & 1 deletion lib/scripts/32-redis.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ async function command(options, log, callback) {

if ((options.pass.startsWith(`"`) && options.pass.endsWith(`"`)) || (options.pass.startsWith(`'`) && options.pass.endsWith(`'`))) {
options.pass = options.pass;
} else {
} else if (options.pass != '') {
options.pass = `"${options.pass}"`;
}

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"cors": "^2.8.5",
"fs-extra": "^11.1.1",
"fs-extra": "^11.2.0",
"ftp": "^0.3.10",
"google-auth-library": "^9.2.0",
"node-schedule": "^2.1.1",
"node-wol": "^0.1.1",
"onedrive-api": "^1.1.1",
"request": "^2.88.2",
"tar-fs": "^3.0.4",
"webdav": "^5.3.0"
"webdav": "^5.3.1"
},
"devDependencies": {
"@alcalzone/release-script": "^3.6.0",
Expand Down

0 comments on commit 590d74e

Please sign in to comment.