mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fixed the search for related transfers.
This commit is contained in:
parent
1f5f515d72
commit
4a8b17ac7c
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user