From d123ca606308183806d6874529ca6be5bf7fa432 Mon Sep 17 00:00:00 2001 From: Devin Buhl Date: Wed, 11 Jan 2017 16:12:17 -0500 Subject: [PATCH] updates --- src/NzbDrone.Core/AutoImporter/AutoImporterDefinition.cs | 6 ------ src/NzbDrone.Core/AutoImporter/IAutoImporter.cs | 3 ++- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/src/NzbDrone.Core/AutoImporter/AutoImporterDefinition.cs b/src/NzbDrone.Core/AutoImporter/AutoImporterDefinition.cs index 2446fb817..b3fad1178 100644 --- a/src/NzbDrone.Core/AutoImporter/AutoImporterDefinition.cs +++ b/src/NzbDrone.Core/AutoImporter/AutoImporterDefinition.cs @@ -6,12 +6,6 @@ public class AutoImporterDefinition : ProviderDefinition { public bool Enabled { get; set; } public string Link { get; set; } - //public DownloadProtocol Protocol { get; set; } - //public bool SupportsRss { get; set; } - //public bool SupportsSearch { get; set; } - public override bool Enable => Enabled; - - // public IndexerStatus Status { get; set; } } } diff --git a/src/NzbDrone.Core/AutoImporter/IAutoImporter.cs b/src/NzbDrone.Core/AutoImporter/IAutoImporter.cs index 246e94f92..f78f90141 100644 --- a/src/NzbDrone.Core/AutoImporter/IAutoImporter.cs +++ b/src/NzbDrone.Core/AutoImporter/IAutoImporter.cs @@ -2,6 +2,7 @@ using NzbDrone.Core.IndexerSearch.Definitions; using NzbDrone.Core.Parser.Model; using NzbDrone.Core.ThingiProvider; +using NzbDrone.Core.Tv; namespace NzbDrone.Core.AutoImporter { @@ -10,6 +11,6 @@ public interface IAutoImporter : IProvider string Link { get; } bool Enabled { get; } - IList Fetch(); + IList Fetch(); } } \ No newline at end of file