From 8a5cecd2a09f04aa11fa0b8e4b958b8058bd45bc Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 19 Apr 2024 19:58:09 +0200 Subject: [PATCH] Fix https://github.com/firefly-iii/firefly-iii/issues/8781 --- app/Support/Search/OperatorQuerySearch.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/Support/Search/OperatorQuerySearch.php b/app/Support/Search/OperatorQuerySearch.php index 407cb38b84..83f851aa37 100644 --- a/app/Support/Search/OperatorQuerySearch.php +++ b/app/Support/Search/OperatorQuerySearch.php @@ -159,6 +159,10 @@ class OperatorQuerySearch implements SearchInterface foreach ($query1->getNodes() as $searchNode) { $this->handleSearchNode($searchNode); } + + // add missing information + $this->collector->withBillInformation(); + $this->collector->setSearchWords($this->words); $this->collector->excludeSearchWords($this->prohibitedWords); }