diff --git a/src/NzbDrone.Core/Configuration/IConfigService.cs b/src/NzbDrone.Core/Configuration/IConfigService.cs index c54215ecf..f425f540e 100644 --- a/src/NzbDrone.Core/Configuration/IConfigService.cs +++ b/src/NzbDrone.Core/Configuration/IConfigService.cs @@ -62,7 +62,6 @@ namespace NzbDrone.Core.Configuration string WhitelistedHardcodedSubs { get; set; } string ListSyncLevel { get; set; } - string ImportExclusions { get; set; } // Metadata Provider TMDbCountryCode CertificationCountry { get; set; } diff --git a/src/Radarr.Api.V3/Config/ImportListConfigResource.cs b/src/Radarr.Api.V3/Config/ImportListConfigResource.cs index a7c3ed309..448d86aa9 100644 --- a/src/Radarr.Api.V3/Config/ImportListConfigResource.cs +++ b/src/Radarr.Api.V3/Config/ImportListConfigResource.cs @@ -6,7 +6,6 @@ namespace Radarr.Api.V3.Config public class ImportListConfigResource : RestResource { public string ListSyncLevel { get; set; } - public string ImportExclusions { get; set; } } public static class ImportListConfigResourceMapper @@ -16,7 +15,6 @@ namespace Radarr.Api.V3.Config return new ImportListConfigResource { ListSyncLevel = model.ListSyncLevel, - ImportExclusions = model.ImportExclusions }; } }