Skip to content

Commit

Permalink
HomeMaticHomeKitThermometerService get will now return a number inste…
Browse files Browse the repository at this point in the history
…ad of a string (Issue n/a)
  • Loading branch information
thkl committed Feb 10, 2020
1 parent 4848eea commit 785c163
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ChannelServices/HomeMaticHomeKitThermometerService.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ HomeMaticHomeKitThermometerService.prototype.createDeviceService = function (Ser
that.addLogEntry({
currentTemp: parseFloat(value)
})
if (callback) callback(null, value)
if (callback) callback(null, parseFloat(value))
})
}.bind(this))

Expand Down

0 comments on commit 785c163

Please sign in to comment.