mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-08-29 01:13:08 +00:00
Fix reference to unknown method.
This commit is contained in:
@@ -225,7 +225,7 @@ class TransactionRequest extends Request
|
|||||||
return $first;
|
return $first;
|
||||||
}
|
}
|
||||||
|
|
||||||
$account = $repository->findByNameNull($accountName, [AccountType::ASSET]);
|
$account = $repository->findByName($accountName, [AccountType::ASSET]);
|
||||||
if (null === $account) {
|
if (null === $account) {
|
||||||
$validator->errors()->add($nameField, trans('validation.belongs_user'));
|
$validator->errors()->add($nameField, trans('validation.belongs_user'));
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user