diff --git a/fhem/CHANGED b/fhem/CHANGED index f4a90486a..8225f24eb 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -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 98_SmarterCoffee: fix fhem crash bug - feature: 88_HMCCU: client device update optimized - bugfix: 89_FULLY: fixed version check bug - feature: 74_AMADtaskerset: import with share link diff --git a/fhem/FHEM/98_SmarterCoffee.pm b/fhem/FHEM/98_SmarterCoffee.pm index 408d7b3ef..f383ecd95 100644 --- a/fhem/FHEM/98_SmarterCoffee.pm +++ b/fhem/FHEM/98_SmarterCoffee.pm @@ -110,7 +110,7 @@ package main; use strict; use warnings; -my $version = "1.0.0"; +my $version = "1.0.1"; sub SmarterCoffee_Initialize($) { my ($hash) = @_; @@ -180,7 +180,8 @@ BEGIN { gettimeofday InternalTimer RemoveInternalTimer - DoTrigger) + DoTrigger + parseParams) ); }