mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
@@ -137,9 +137,9 @@ namespace NzbDrone.Core.Applications.Lidarr
|
|||||||
{
|
{
|
||||||
Id = id,
|
Id = id,
|
||||||
Name = $"{indexer.Name} (Prowlarr)",
|
Name = $"{indexer.Name} (Prowlarr)",
|
||||||
EnableRss = indexer.AppProfile.Value.EnableRss,
|
EnableRss = indexer.Enable && indexer.AppProfile.Value.EnableRss,
|
||||||
EnableAutomaticSearch = indexer.AppProfile.Value.EnableAutomaticSearch,
|
EnableAutomaticSearch = indexer.Enable && indexer.AppProfile.Value.EnableAutomaticSearch,
|
||||||
EnableInteractiveSearch = indexer.AppProfile.Value.EnableInteractiveSearch,
|
EnableInteractiveSearch = indexer.Enable && indexer.AppProfile.Value.EnableInteractiveSearch,
|
||||||
Priority = indexer.Priority,
|
Priority = indexer.Priority,
|
||||||
Implementation = indexer.Protocol == DownloadProtocol.Usenet ? "Newznab" : "Torznab",
|
Implementation = indexer.Protocol == DownloadProtocol.Usenet ? "Newznab" : "Torznab",
|
||||||
ConfigContract = schema.ConfigContract,
|
ConfigContract = schema.ConfigContract,
|
||||||
|
@@ -137,9 +137,9 @@ namespace NzbDrone.Core.Applications.Radarr
|
|||||||
{
|
{
|
||||||
Id = id,
|
Id = id,
|
||||||
Name = $"{indexer.Name} (Prowlarr)",
|
Name = $"{indexer.Name} (Prowlarr)",
|
||||||
EnableRss = indexer.AppProfile.Value.EnableRss,
|
EnableRss = indexer.Enable && indexer.AppProfile.Value.EnableRss,
|
||||||
EnableAutomaticSearch = indexer.AppProfile.Value.EnableAutomaticSearch,
|
EnableAutomaticSearch = indexer.Enable && indexer.AppProfile.Value.EnableAutomaticSearch,
|
||||||
EnableInteractiveSearch = indexer.AppProfile.Value.EnableInteractiveSearch,
|
EnableInteractiveSearch = indexer.Enable && indexer.AppProfile.Value.EnableInteractiveSearch,
|
||||||
Priority = indexer.Priority,
|
Priority = indexer.Priority,
|
||||||
Implementation = indexer.Protocol == DownloadProtocol.Usenet ? "Newznab" : "Torznab",
|
Implementation = indexer.Protocol == DownloadProtocol.Usenet ? "Newznab" : "Torznab",
|
||||||
ConfigContract = schema.ConfigContract,
|
ConfigContract = schema.ConfigContract,
|
||||||
|
@@ -137,9 +137,9 @@ namespace NzbDrone.Core.Applications.Readarr
|
|||||||
{
|
{
|
||||||
Id = id,
|
Id = id,
|
||||||
Name = $"{indexer.Name} (Prowlarr)",
|
Name = $"{indexer.Name} (Prowlarr)",
|
||||||
EnableRss = indexer.AppProfile.Value.EnableRss,
|
EnableRss = indexer.Enable && indexer.AppProfile.Value.EnableRss,
|
||||||
EnableAutomaticSearch = indexer.AppProfile.Value.EnableAutomaticSearch,
|
EnableAutomaticSearch = indexer.Enable && indexer.AppProfile.Value.EnableAutomaticSearch,
|
||||||
EnableInteractiveSearch = indexer.AppProfile.Value.EnableInteractiveSearch,
|
EnableInteractiveSearch = indexer.Enable && indexer.AppProfile.Value.EnableInteractiveSearch,
|
||||||
Priority = indexer.Priority,
|
Priority = indexer.Priority,
|
||||||
Implementation = indexer.Protocol == DownloadProtocol.Usenet ? "Newznab" : "Torznab",
|
Implementation = indexer.Protocol == DownloadProtocol.Usenet ? "Newznab" : "Torznab",
|
||||||
ConfigContract = schema.ConfigContract,
|
ConfigContract = schema.ConfigContract,
|
||||||
|
@@ -137,9 +137,9 @@ namespace NzbDrone.Core.Applications.Sonarr
|
|||||||
{
|
{
|
||||||
Id = id,
|
Id = id,
|
||||||
Name = $"{indexer.Name} (Prowlarr)",
|
Name = $"{indexer.Name} (Prowlarr)",
|
||||||
EnableRss = indexer.AppProfile.Value.EnableRss,
|
EnableRss = indexer.Enable && indexer.AppProfile.Value.EnableRss,
|
||||||
EnableAutomaticSearch = indexer.AppProfile.Value.EnableAutomaticSearch,
|
EnableAutomaticSearch = indexer.Enable && indexer.AppProfile.Value.EnableAutomaticSearch,
|
||||||
EnableInteractiveSearch = indexer.AppProfile.Value.EnableInteractiveSearch,
|
EnableInteractiveSearch = indexer.Enable && indexer.AppProfile.Value.EnableInteractiveSearch,
|
||||||
Priority = indexer.Priority,
|
Priority = indexer.Priority,
|
||||||
Implementation = indexer.Protocol == DownloadProtocol.Usenet ? "Newznab" : "Torznab",
|
Implementation = indexer.Protocol == DownloadProtocol.Usenet ? "Newznab" : "Torznab",
|
||||||
ConfigContract = schema.ConfigContract,
|
ConfigContract = schema.ConfigContract,
|
||||||
|
Reference in New Issue
Block a user