mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-15 08:35:00 +00:00
Auto commit for release 'develop' on 2025-03-14
This commit is contained in:
@@ -400,14 +400,14 @@ trait ConvertsDataTypes
|
||||
if (!is_array($entry)) {
|
||||
continue;
|
||||
}
|
||||
$amount = null;
|
||||
if(array_key_exists('current_amount',$entry)) {
|
||||
$amount = null;
|
||||
if (array_key_exists('current_amount', $entry)) {
|
||||
$amount = $this->clearString((string) ($entry['current_amount'] ?? '0'));
|
||||
if(null === $entry['current_amount']) {
|
||||
if (null === $entry['current_amount']) {
|
||||
$amount = null;
|
||||
}
|
||||
}
|
||||
if(!array_key_exists('current_amount',$entry)) {
|
||||
if (!array_key_exists('current_amount', $entry)) {
|
||||
$amount = null;
|
||||
}
|
||||
$return[] = [
|
||||
|
Reference in New Issue
Block a user