From 6aedf0763f0710989fc22c19bd44cc6c6aa704a5 Mon Sep 17 00:00:00 2001 From: phenning <> Date: Sat, 17 Aug 2024 17:47:08 +0000 Subject: [PATCH] 95_Astro.pm: erneuter Bugfix nach Mitteilung von betateilchen git-svn-id: https://svn.fhem.de/fhem/trunk@29078 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 f61aa7cd9..a35af3830 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);