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();
|
->get();
|
||||||
$encrypted = $encryptedCollection->filter(
|
$encrypted = $encryptedCollection->filter(
|
||||||
function (\TransactionJournal $journal) use ($query) {
|
function (\TransactionJournal $journal) use ($query) {
|
||||||
$strPos = strpos($journal->description, $query);
|
$strPos = strpos(strtolower($journal->description), strtolower($query));
|
||||||
if ($strPos !== false) {
|
if ($strPos !== false) {
|
||||||
return $journal;
|
return $journal;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user