mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-23 04:46:44 +00:00
🤖 Auto commit for release 'develop' on 2025-07-02
This commit is contained in:
@@ -608,12 +608,12 @@ class OperatorQuerySearch implements SearchInterface
|
|||||||
foreach ($parts as $accountId) {
|
foreach ($parts as $accountId) {
|
||||||
$accountId = (int) $accountId;
|
$accountId = (int) $accountId;
|
||||||
Log::debug(sprintf('Searching for account with ID #%d', $accountId));
|
Log::debug(sprintf('Searching for account with ID #%d', $accountId));
|
||||||
$account = $this->accountRepository->find($accountId);
|
$account = $this->accountRepository->find($accountId);
|
||||||
if (null !== $account) {
|
if (null !== $account) {
|
||||||
Log::debug(sprintf('Found account with ID #%d ("%s")', $accountId, $account->name));
|
Log::debug(sprintf('Found account with ID #%d ("%s")', $accountId, $account->name));
|
||||||
$collection->push($account);
|
$collection->push($account);
|
||||||
}
|
}
|
||||||
if(null === $account) {
|
if (null === $account) {
|
||||||
Log::debug(sprintf('Did not find account with ID #%d', $accountId));
|
Log::debug(sprintf('Did not find account with ID #%d', $accountId));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user