diff --git a/src/NzbDrone.Core/ImportLists/Custom/CustomImport.cs b/src/NzbDrone.Core/ImportLists/Custom/CustomImport.cs index 1efc0d038..5cf161867 100644 --- a/src/NzbDrone.Core/ImportLists/Custom/CustomImport.cs +++ b/src/NzbDrone.Core/ImportLists/Custom/CustomImport.cs @@ -13,12 +13,12 @@ namespace NzbDrone.Core.ImportLists.Custom { public class CustomImport : ImportListBase { - private readonly ICustomProxy _customProxy; + private readonly ICustomImportProxy _customProxy; public override string Name => "Custom List"; public override ImportListType ListType => ImportListType.Advanced; - public CustomImport(ICustomProxy customProxy, + public CustomImport(ICustomImportProxy customProxy, IImportListStatusService importListStatusService, IConfigService configService, IParsingService parsingService,