2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00

73_AutoShuttersControl: fix GetAntiFreez

git-svn-id: https://svn.fhem.de/fhem/trunk@21135 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
LeonGaultier 2020-02-07 08:18:53 +00:00
parent d5669e402a
commit 24453d7336
2 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: 73_AutoShuttersControl: fix GetAntiFreez
- change: 59_Weather: add wunderground documentation in commandref
- feature mqtt2.template: add speech recognition extensions
- bugfix: 73_AutoShuttersControl: fix AntiFreeze_Fn

View File

@ -4702,7 +4702,7 @@ sub getFreezeStatus {
$daytime = (
defined($daytime) and $daytime
? $daytime
: ( strftime( "%k", localtime() ) < 12 ? 'pm' : 'am' )
: ( strftime( "%k", localtime() ) < 12 ? 'am' : 'pm' )
);
my $outTemp = $ascDev->getOutTemp;
$outTemp = $shutters->getOutTemp if ( $shutters->getOutTemp != -100 );
@ -7897,7 +7897,7 @@ sub getblockAscDrivesAfterManual {
],
"release_status": "testing",
"license": "GPL_2",
"version": "v0.8.15",
"version": "v0.8.16",
"author": [
"Marko Oldenburg <leongaultier@gmail.com>"
],