Skip to content

Commit

Permalink
Merge pull request #129 from Grizzelbee/Dev_4.0.14
Browse files Browse the repository at this point in the history
fixes #127
  • Loading branch information
Grizzelbee authored Apr 18, 2021
2 parents 308d7ee + 5ff57d4 commit f90f8d2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,9 @@ Here is a list of what these raw values stand for:

## Changelog

### V4.0.14 (2021-04-18) (Alchemy)
* (grizzelbee) Fix: [127](https://github.com/Grizzelbee/ioBroker.mielecloudservice/issues/127) targetTemp for fridges caused exception and crash of adapter

### V4.0.13 (2021-04-12) (The toy master)
* (grizzelbee) Fix: [90](https://github.com/Grizzelbee/ioBroker.mielecloudservice/issues/90) targetTemp addresses zones for fridges and freezers dynamically now

Expand Down
4 changes: 2 additions & 2 deletions io-package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"common": {
"name": "mielecloudservice",
"version": "4.0.13",
"version": "4.0.14",
"news": {
"4.0.13": {
"4.0.14": {
"en": "Bugfix Release - see changelog for details!",
"de": "Bugfix Release - Details siehe Changelog!",
"ru": "Выпуск исправления ошибок - подробности см. В журнале изменений!",
Expand Down
4 changes: 2 additions & 2 deletions miele-Tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -1380,11 +1380,11 @@ module.exports.createStateTargetTemperatureFridge = function(adapter, setup, pat
},
native: {}
}, () => {
adapter.setState(path + '.ACTIONS.targetTemperatureFridge', value, true);
adapter.setState(path + '.ACTIONS.targetTemperatureFridge', value.value, true);
adapter.subscribeStates(path + '.ACTIONS.targetTemperatureFridge');
});
} else {
adapter.setState(path + '.ACTIONS.targetTemperatureFridge', value, true);
adapter.setState(path + '.ACTIONS.targetTemperatureFridge', value.value, true);
}
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iobroker.mielecloudservice",
"version": "4.0.13",
"version": "4.0.14",
"description": "Integrates your MieleCloudService (aka Miele@Home) Devices to ioBroker",
"author": {
"name": "grizzelbee",
Expand Down

0 comments on commit f90f8d2

Please sign in to comment.