mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
Fix: Indexers that are enabled but aren't configured correctly will be skipped during rss/search
This commit is contained in:
parent
e0170a08e4
commit
2009693787
12 changed files with 159 additions and 38 deletions
|
@ -30,7 +30,14 @@ namespace NzbDrone.Core.Providers.Indexer
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
public override bool IsConfigured
|
||||
{
|
||||
get
|
||||
{
|
||||
return !string.IsNullOrWhiteSpace(_configProvider.NewzbinUsername) &&
|
||||
!string.IsNullOrWhiteSpace(_configProvider.NewzbinPassword);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
protected override NetworkCredential Credentials
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue