2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-09 20:57:11 +00:00

82_LGTV_WebOS: fix uninitialized value

git-svn-id: https://svn.fhem.de/fhem/trunk@25823 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
LeonGaultier 2022-03-13 10:20:53 +00:00
parent 6451c65699
commit 440a676581
3 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
# Do not insert empty lines here, update check depends on it.
- bugfix: 82_LGTV_WebOS: fix uninitialized value
- feature: 32_withings: added new ecg readings previously unknown
- change: 82_LGTV_WebOS: split in to packages
- bugfix: 93_DbLog: $data{firstvalX} now usable, forum:#126631

View File

@ -368,7 +368,7 @@ __END__
],
"release_status": "stable",
"license": "GPL_2",
"version": "v3.6.1",
"version": "v3.6.2",
"author": [
"Marko Oldenburg <fhemdevelopment@cooltux.net>"
],

View File

@ -361,7 +361,7 @@ sub TimerStatusRequest {
}
else {
::readingsSingleUpdate( $hash, 'state', 'off', 1 )
::readingsBulkUpdateIfChanged( $hash, 'state', 'off' )
if ( ::ReadingsVal( $name, 'state', 'off' ) ne 'off' );
Presence($hash)