diff --git a/fhem/CHANGED b/fhem/CHANGED index 9985f39ed..368c74680 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -1,5 +1,7 @@ # 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 little winrec bug then state opened + (max winrec sensors) - feature: DarkSkyAPI: add demo support for FHEM demo konfiguration - bugfix: 88_HMCCU: set/get config bug fixed - feature: 49_SSCam: support of genericStrmHtmlTag attr in streaming devices diff --git a/fhem/FHEM/73_AutoShuttersControl.pm b/fhem/FHEM/73_AutoShuttersControl.pm index 1dee9e238..5521f5462 100644 --- a/fhem/FHEM/73_AutoShuttersControl.pm +++ b/fhem/FHEM/73_AutoShuttersControl.pm @@ -41,7 +41,7 @@ package main; use strict; use warnings; -my $version = '0.4.0.7'; +my $version = '0.4.0.8'; sub AutoShuttersControl_Initialize($) { my ($hash) = @_; @@ -843,7 +843,7 @@ sub EventProcessingWindowRec($@) { elsif ( ( $1 eq 'tilted' - or ( $1 eq 'open' and $shutters->getSubTyp eq 'twostate' ) + or ( ($1 eq 'open' or $1 eq 'opened') and $shutters->getSubTyp eq 'twostate' ) ) and $shutters->getVentilateOpen eq 'on' and $queryShuttersPosWinRecTilted