mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-26 23:00:53 +02:00
parent
a8234c9ce0
commit
9dde041c99
1 changed files with 1 additions and 1 deletions
|
|
@ -123,7 +123,7 @@ class AddIndexerModalContent extends Component {
|
|||
const filteredIndexers = indexers.filter((indexer) => {
|
||||
const { filter, filterProtocols, filterLanguages, filterPrivacyLevels } = this.state;
|
||||
|
||||
if (!indexer.name.toLowerCase().includes(filter.toLocaleLowerCase())) {
|
||||
if (!indexer.name.toLowerCase().includes(filter.toLocaleLowerCase()) && !indexer.description.toLowerCase().includes(filter.toLocaleLowerCase())) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue