1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-02 21:24:56 +00:00

Fixed interface name after half baked rename

This commit is contained in:
Mark McDowall 2022-10-03 18:44:07 -07:00
parent 238885371b
commit 9458f4c796

View file

@ -13,12 +13,12 @@ namespace NzbDrone.Core.ImportLists.Custom
{
public class CustomImport : ImportListBase<CustomSettings>
{
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,