From 9458f4c7962219d362a355be52cbfaf5375d4169 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Mon, 3 Oct 2022 18:44:07 -0700 Subject: [PATCH] Fixed interface name after half baked rename --- src/NzbDrone.Core/ImportLists/Custom/CustomImport.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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,