Skip to content

Commit

Permalink
v6.0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
seydx committed Jul 8, 2021
1 parent 94ac3a9 commit 100a1fb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

# v6.0.14 - 2021-07-08

## Bugfixes
- Fixed an issue where thermostats do not display the temperature value of the external temperature when `externTemperatureSensor` is enabled

# v6.0.13 - 2021-07-08

## Bugfixes
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "homebridge-fritz-platform",
"version": "6.0.13",
"version": "6.0.14",
"description": "Homebridge Plugin to control FritzBox router, smarthome devices and more.",
"main": "index.js",
"funding": [
Expand Down
2 changes: 1 addition & 1 deletion src/accessories/smarthome/smarthome.handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -1019,7 +1019,7 @@ class Handler {
: device.thermostat.target;
*/

if (device.externTemperatureSensor) {
if (accessory.context.config.externTemperatureSensor) {
currentTemp = device.temperature.value || currentTemp;
}

Expand Down

0 comments on commit 100a1fb

Please sign in to comment.