mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-30 12:43:57 -06:00
Prevent index error
This commit is contained in:
parent
281de63e0d
commit
f4b66b980b
@ -91,7 +91,7 @@ class SplitJournalFormRequest extends Request
|
||||
'currency_id' => $this->integer('journal_currency_id'),
|
||||
'currency_code' => null,
|
||||
'description' => $transaction['transaction_description'] ?? '',
|
||||
'amount' => $transaction['amount'],
|
||||
'amount' => $transaction['amount'] ?? '',
|
||||
'budget_id' => (int)($transaction['budget_id'] ?? 0.0),
|
||||
'budget_name' => null,
|
||||
'category_id' => null,
|
||||
|
Loading…
Reference in New Issue
Block a user