mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-02 03:51:18 +00:00
Fixed the search for related transfers.
This commit is contained in:
@@ -77,7 +77,7 @@ class Related implements RelatedInterface
|
||||
->get();
|
||||
$encrypted = $encryptedCollection->filter(
|
||||
function (\TransactionJournal $journal) use ($query) {
|
||||
$strPos = strpos($journal->description, $query);
|
||||
$strPos = strpos(strtolower($journal->description), strtolower($query));
|
||||
if ($strPos !== false) {
|
||||
return $journal;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user