mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -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,6 +30,15 @@ namespace NzbDrone.Core.Providers.Indexer
|
|||
}
|
||||
}
|
||||
|
||||
public override bool IsConfigured
|
||||
{
|
||||
get
|
||||
{
|
||||
return !string.IsNullOrWhiteSpace(_configProvider.NzbMatrixUsername) &&
|
||||
!string.IsNullOrWhiteSpace(_configProvider.NzbMatrixApiKey);
|
||||
}
|
||||
}
|
||||
|
||||
protected override IList<string> GetEpisodeSearchUrls(string seriesTitle, int seasonNumber, int episodeNumber)
|
||||
{
|
||||
var searchUrls = new List<String>();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue