From bfae7765611a8def7c195f4fe5851fb394e146dd Mon Sep 17 00:00:00 2001 From: herrmannj <> Date: Wed, 23 Aug 2023 00:30:48 +0000 Subject: [PATCH] Cron.pm: wip git-svn-id: https://svn.fhem.de/fhem/trunk@27878 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/lib/FHEM/Scheduler/Cron.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fhem/lib/FHEM/Scheduler/Cron.pm b/fhem/lib/FHEM/Scheduler/Cron.pm index 4ce5278a7..bd4c17580 100644 --- a/fhem/lib/FHEM/Scheduler/Cron.pm +++ b/fhem/lib/FHEM/Scheduler/Cron.pm @@ -410,7 +410,7 @@ sub _next_date { # set of possible dates, based on the different methods my @set; - # the mdays/months + # calendar if (scalar @{$self->{list_of_mdays}}) { # check if cached value can be used if (($self->{working_date} and $self->{next_calender_date}) and @@ -422,7 +422,7 @@ sub _next_date { push @set, $self->{next_calender_date} = $self->_next_calendar_date($from_date, $inclusive); } } - + # weekday if (scalar @{$self->{list_of_or_wdays}}) { # check if cached value can be used if (($self->{working_date} and $self->{next_weekday_date}) and