mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-10 09:16:53 +00:00
93_DbRep: fix perl warning
git-svn-id: https://svn.fhem.de/fhem/trunk@27420 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
91d9887e8f
commit
97383a23d3
@ -59,6 +59,7 @@ no if $] >= 5.017011, warnings => 'experimental::smartmatch';
|
||||
|
||||
# Version History intern
|
||||
my %DbRep_vNotesIntern = (
|
||||
"8.52.4" => "10.04.2023 fix perl warning ",
|
||||
"8.52.3" => "04.04.2023 fix diffValue writeToDB: https://forum.fhem.de/index.php?topic=53584.msg1270905#msg1270905 ",
|
||||
"8.52.2" => "28.03.2023 diffValue can operate positive and negative differences, sqlCmd can execute 'describe' statement ",
|
||||
"8.52.1" => "19.03.2023 fix Perl Warnings ",
|
||||
@ -4781,7 +4782,7 @@ sub DbRep_diffvalDone {
|
||||
my $reading = $a[4];
|
||||
my $bt = $a[5];
|
||||
my $rowsrej = $a[6] ? decode_base64($a[6]) : ''; # String von Datensätzen die nicht berücksichtigt wurden (diff Schwellenwert Überschreitung)
|
||||
my $ncpslist = $a[6] ? decode_base64($a[7]) : ''; # Hash von Perioden die nicht kalkuliert werden konnten "no calc in period"
|
||||
my $ncpslist = $a[7] ? decode_base64($a[7]) : ''; # Hash von Perioden die nicht kalkuliert werden konnten "no calc in period"
|
||||
my $irowdone = $a[8];
|
||||
|
||||
my $hash = $defs{$name};
|
||||
|
Loading…
x
Reference in New Issue
Block a user