To Revert: TempFix DownloadClientBase plugin compatibility (#5552)

Co-authored-by: Meyn <loads@gmx.de>
This commit is contained in:
TypNull 2025-07-15 22:02:36 +00:00 committed by bakerboy448
commit c029c699a9

View file

@ -89,6 +89,17 @@ namespace NzbDrone.Core.Download
_logger = logger;
}
protected DownloadClientBase(IConfigService configService,
IDiskProvider diskProvider,
IRemotePathMappingService remotePathMappingService,
Logger logger)
{
_configService = configService;
_diskProvider = diskProvider;
_remotePathMappingService = remotePathMappingService;
_logger = logger;
}
public override string ToString()
{
return GetType().Name;