mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Fix issue with new crud() method.
This commit is contained in:
@@ -323,7 +323,7 @@ trait AccountServiceTrait
|
||||
/** @var AccountMetaFactory $factory */
|
||||
$factory = app(AccountMetaFactory::class);
|
||||
foreach ($fields as $field) {
|
||||
$factory->crud($account, $field, $data[$field] ?? '');
|
||||
$factory->crud($account, $field, (string)($data[$field] ?? ''));
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user