mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix another null.
This commit is contained in:
parent
966b68f42e
commit
399d7968f5
@ -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',
|
||||
|
Loading…
Reference in New Issue
Block a user