We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When archive is false in innreport.conf, an illegal division by zero is reported:
archive
false
$image->string( gdSmallFont(), $xmax / 2, $y_in, (sprintf "Avg: %5.1f $unit", $s_in / $t_in * $factor), $black );
$t_in equals 0 when there isn't any date in the first field of innreport.db:
$t_in
news-notice.html|Jan 5 03:00:02 -- Jan 6 03:00:02|407991|31972|69.0 MB|632353|44546|539.2 MB
The expected name is something like news-notice.2022.01.02-04.15.02.html but that is not always true, whence a wrong computation here:
news-notice.2022.01.02-04.15.02.html
my ($year) = $k =~ m/^news-notice\. (\d+)\.\d+\.\d+-\d+.\d+.\d+$HTML_EXTENSION/x; $dates{$start_sec} = $end_sec;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When
archive
isfalse
in innreport.conf, an illegal division by zero is reported:$t_in
equals 0 when there isn't any date in the first field of innreport.db:news-notice.html|Jan 5 03:00:02 -- Jan 6 03:00:02|407991|31972|69.0 MB|632353|44546|539.2 MB
The expected name is something like
news-notice.2022.01.02-04.15.02.html
but that is not always true, whence a wrong computation here:The text was updated successfully, but these errors were encountered: