mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
New: Application Status Warnings
This commit is contained in:
@@ -76,7 +76,7 @@ namespace NzbDrone.Core.Applications.Readarr
|
||||
var indexers = _readarrV1Proxy.GetIndexers(Settings);
|
||||
|
||||
//Pull all local indexers (TODO only those that support movie categories.)
|
||||
var prowlarrIndexers = _indexerFactory.GetAvailableProviders();
|
||||
var prowlarrIndexers = _indexerFactory.Enabled();
|
||||
|
||||
//Pull mapping so we can check the mapping to see what already exists.
|
||||
var indexerMappings = _appIndexerMapService.GetMappingsForApp(Definition.Id);
|
||||
@@ -107,9 +107,9 @@ namespace NzbDrone.Core.Applications.Readarr
|
||||
{
|
||||
Id = 0,
|
||||
Name = $"{indexer.Name} (Prowlarr)",
|
||||
EnableRss = indexer.EnableRss,
|
||||
EnableAutomaticSearch = indexer.EnableAutomaticSearch,
|
||||
EnableInteractiveSearch = indexer.EnableInteractiveSearch,
|
||||
EnableRss = true,
|
||||
EnableAutomaticSearch = true,
|
||||
EnableInteractiveSearch = true,
|
||||
Priority = indexer.Priority,
|
||||
Implementation = indexer.Protocol == DownloadProtocol.Usenet ? "Newznab" : "Torznab",
|
||||
ConfigContract = schema.ConfigContract,
|
||||
|
Reference in New Issue
Block a user