From 3feb2c9955d2aeeb35e131e0d3966bc3b5ed1c19 Mon Sep 17 00:00:00 2001 From: JC5 Date: Wed, 2 Jul 2025 19:38:36 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Auto=20commit=20for=20release=20?= =?UTF-8?q?'develop'=20on=202025-07-02?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Support/Search/OperatorQuerySearch.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Support/Search/OperatorQuerySearch.php b/app/Support/Search/OperatorQuerySearch.php index f6378f0415..69781b2157 100644 --- a/app/Support/Search/OperatorQuerySearch.php +++ b/app/Support/Search/OperatorQuerySearch.php @@ -608,12 +608,12 @@ class OperatorQuerySearch implements SearchInterface foreach ($parts as $accountId) { $accountId = (int) $accountId; Log::debug(sprintf('Searching for account with ID #%d', $accountId)); - $account = $this->accountRepository->find($accountId); + $account = $this->accountRepository->find($accountId); if (null !== $account) { Log::debug(sprintf('Found account with ID #%d ("%s")', $accountId, $account->name)); $collection->push($account); } - if(null === $account) { + if (null === $account) { Log::debug(sprintf('Did not find account with ID #%d', $accountId)); } }