Skip to content

Commit f1a1055

Browse files
committed
update dep
1 parent ba965b1 commit f1a1055

4 files changed

Lines changed: 178 additions & 186 deletions

File tree

.github/workflows/test-and-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929
- uses: ioBroker/testing-action-check@v1
3030
with:
31-
node-version: "20.x"
31+
node-version: "24.x"
3232
# Uncomment the following line if your adapter cannot be installed using 'npm ci'
3333
# install-command: 'npm install'
3434
lint: true
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ${{ matrix.os }}
4141
strategy:
4242
matrix:
43-
node-version: [20.x, 21.x, 18.x]
43+
node-version: [20.x, 22.x, 24.x]
4444
os: [ubuntu-latest, windows-latest, macos-latest]
4545

4646
steps:

main.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4042,7 +4042,10 @@ class VwWeconnect extends utils.Adapter {
40424042
"https://mysmob.api.connect.skoda-auto.cz/api/v2/air-conditioning/" + vin + "/active-ventilation/" + value;
40434043
}
40444044

4045-
const method = "POST";
4045+
let method = "POST";
4046+
if (action === "maxChargeCurrent") {
4047+
method = "PUT";
4048+
}
40464049

40474050
this.log.debug(url);
40484051
this.log.debug(JSON.stringify(body));

0 commit comments

Comments
 (0)