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

74_XiaomiFlowerSens: fix change InternalTimer now

git-svn-id: https://svn.fhem.de/fhem/trunk@15467 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
LeonGaultier 2017-11-20 22:48:19 +00:00
parent 39851002b7
commit 03692befa5
2 changed files with 4 additions and 1 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: 74_XiaomiFlowerSens: fix change InternalTimer now
- bugfix: 49_SSCam: V3.2.4, don't retrieve presets during restart if cam is
disabled
- feature: 98_Hyperion: - new "set binary restart/stop"

View File

@ -47,7 +47,7 @@ use JSON;
use Blocking;
my $version = "1.2.2";
my $version = "1.2.3";
my %CallBatteryFirmwareAge = ( '8h' => 28800,
'16h' => 57600,
'24h' => 86400,
@ -248,6 +248,8 @@ sub XiaomiFlowerSens_Notify($$) {
XiaomiFlowerSens_stateRequestTimer($hash) if( grep /^INITIALIZED$/,@{$events}
or grep /^DELETEATTR.$name.disable$/,@{$events}
or grep /^DELETEATTR.$name.interval$/,@{$events}
or grep /^ATTR.$name.interval.[0-9]+/,@{$events}
or (grep /^DEFINED.$name$/,@{$events} and $init_done) );
return;
}