Fix for report when things happen in 0 seconds
This commit is contained in:
parent
2d498ecee6
commit
dc88a2792e
|
@ -264,7 +264,7 @@ $time = $end - $start;
|
||||||
if ($time > 0) {
|
if ($time > 0) {
|
||||||
$speed = round(($filecount+$duplicates)/$time, 1);
|
$speed = round(($filecount+$duplicates)/$time, 1);
|
||||||
} else {
|
} else {
|
||||||
$speed = "N/A";
|
$speed = ($filecount+$duplicates);
|
||||||
}
|
}
|
||||||
|
|
||||||
echo "==========================================================================\n";
|
echo "==========================================================================\n";
|
||||||
|
|
Loading…
Reference in New Issue