mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
To Revert: TempFix DownloadClientBase plugin compatibility (#5552)
Co-authored-by: Meyn <loads@gmx.de>
This commit is contained in:
parent
61611a08d2
commit
c029c699a9
1 changed files with 11 additions and 0 deletions
|
@ -89,6 +89,17 @@ namespace NzbDrone.Core.Download
|
||||||
_logger = logger;
|
_logger = logger;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected DownloadClientBase(IConfigService configService,
|
||||||
|
IDiskProvider diskProvider,
|
||||||
|
IRemotePathMappingService remotePathMappingService,
|
||||||
|
Logger logger)
|
||||||
|
{
|
||||||
|
_configService = configService;
|
||||||
|
_diskProvider = diskProvider;
|
||||||
|
_remotePathMappingService = remotePathMappingService;
|
||||||
|
_logger = logger;
|
||||||
|
}
|
||||||
|
|
||||||
public override string ToString()
|
public override string ToString()
|
||||||
{
|
{
|
||||||
return GetType().Name;
|
return GetType().Name;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue