🤖 Auto commit for release 'develop' on 2025-10-10

This commit is contained in:
JC5
2025-10-10 13:32:57 +02:00
parent a88d0de34d
commit e09b6034f7
6 changed files with 36 additions and 35 deletions

View File

@@ -81,12 +81,12 @@ class ReconcileController extends Controller
if (!$start instanceof Carbon && !$end instanceof Carbon) {
throw new FireflyException('Invalid dates submitted.');
}
if(!is_numeric($startBalance)) {
if (!is_numeric($startBalance)) {
$startBalance = '0';
}
if(!is_numeric($endBalance)) {
if (!is_numeric($endBalance)) {
$endBalance = '0';
}
}
if ($end->lt($start)) {
[$start, $end] = [$end, $start];
}