From dfbb0614853bdb396b2cb6b985a0fe43bdbffebf Mon Sep 17 00:00:00 2001 From: phenning <> Date: Fri, 16 Aug 2024 13:53:58 +0000 Subject: [PATCH] 95_Astro.pm: Bugfix nach Mitteilung von Wallyllama git-svn-id: https://svn.fhem.de/fhem/trunk@29072 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/95_Astro.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fhem/FHEM/95_Astro.pm b/fhem/FHEM/95_Astro.pm index c796788db..f61aa7cd9 100644 --- a/fhem/FHEM/95_Astro.pm +++ b/fhem/FHEM/95_Astro.pm @@ -1861,7 +1861,7 @@ sub SunRise($$$$$$$$){ } }elsif ($zone<0) { #rise time was yesterday local time -> calculate rise time for previous UTC day - if ($rise<-$zone || $transit<-zone || $set<-zone) { + if ($rise<-$zone || $transit<-$zone || $set<-zone) { ($transittemp,$risetemp,$settemp) = SunRise($JD-1, $deltaT, $lon, $lat, $zone, $horM, $horE, 1); $transit = $transittemp if ($transit<-$zone);