mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-24 22:48:18 +00:00
Fix array bug.
This commit is contained in:
@@ -46,6 +46,6 @@ trait BasicDataSupport
|
||||
*/
|
||||
protected function isInArrayDate(array $array, int $entryId): ?Carbon
|
||||
{
|
||||
return $array[$entryId]['balance'] ?? null;
|
||||
return $array[$entryId] ?? null;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user