mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-11 15:16:27 +00:00
Fix another null.
This commit is contained in:
@@ -129,7 +129,7 @@ class ShowController extends Controller
|
||||
|
||||
$groups->setPath(route('accounts.show', [$account->id, $start->format('Y-m-d'), $end->format('Y-m-d')]));
|
||||
$showAll = false;
|
||||
$balance = Steam::finalAccountBalance($account, $end)['balance'];
|
||||
$balance = Steam::finalAccountBalance($account, $end)['balance'] ?? '0'; // TODO fix me
|
||||
|
||||
return view(
|
||||
'accounts.show',
|
||||
|
Reference in New Issue
Block a user