mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Fix #7189
This commit is contained in:
@@ -64,7 +64,7 @@ trait ReconciliationValidation
|
||||
|
||||
return false;
|
||||
}
|
||||
$this->source = $search;
|
||||
$this->setSource($search);
|
||||
Log::debug('Valid source account!');
|
||||
|
||||
return true;
|
||||
@@ -85,7 +85,7 @@ trait ReconciliationValidation
|
||||
// source to the asset account that is the destination.
|
||||
if (null === $accountId && null === $accountName) {
|
||||
Log::debug('The source is valid because ID and name are NULL.');
|
||||
$this->source = new Account();
|
||||
$this->setSource(new Account());
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -101,7 +101,7 @@ trait ReconciliationValidation
|
||||
|
||||
return false;
|
||||
}
|
||||
$this->source = $search;
|
||||
$this->setSource($search);
|
||||
Log::debug('Valid source account!');
|
||||
|
||||
return true;
|
||||
|
Reference in New Issue
Block a user