2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 16:56:54 +00:00

98_CDCOpenData.pm: Regenmenge bei _rain_since_midnight korrigiert

git-svn-id: https://svn.fhem.de/fhem/trunk@28161 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
jowiemann 2023-11-14 13:28:36 +00:00
parent b2bb9d6c57
commit 1c53805481

View File

@ -52,7 +52,7 @@ use warnings;
use Blocking;
use HttpUtils;
my $ModulVersion = "01.10a";
my $ModulVersion = "01.10b";
my $missingModul = "";
sub CDCOpenData_Log($$$);
@ -1236,7 +1236,7 @@ sub CDCOpenData_Readout_Run_Rain_Since_Midnight ($@) {
# calculate index of rainfall data for the given geo position:
my $index = CDCOpenData_index_for_geo_position( (split(/,/,$location))[0], (split(/,/,$location))[1], "" );
my $regenmenge = -1;
my $regenmenge = 0;
# extract amount of rain from today's files:
foreach my $file (@files_today) {