From f2f7b10a075510af4d3db0818e3a2045d9ce3bf6 Mon Sep 17 00:00:00 2001 From: Damian Date: Mon, 27 Mar 2023 13:43:55 +0000 Subject: [PATCH] 98_DOIF.pm: fixed isday with relative timer git-svn-id: https://svn.fhem.de/fhem/trunk@27363 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/98_DOIF.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fhem/FHEM/98_DOIF.pm b/fhem/FHEM/98_DOIF.pm index b4f6e57ac..7c8277e9d 100644 --- a/fhem/FHEM/98_DOIF.pm +++ b/fhem/FHEM/98_DOIF.pm @@ -3913,7 +3913,7 @@ sub DOIF_SetTimer { $next_time+=86400; } ($sec,$min,$hour,$mday,$month,$year,$wday,$yday,$isdst) = localtime($next_time); - if ($isdst_now != $isdst) { + if ($isdst_now != $isdst and !$rel) { if ($isdst_now == 1) { $next_time+=3600 if ($isdst == 0); } else {