Fixed: False positive in remote path check with transmission
Correctly use the download directory when it's set (cherry picked from commit e09ca145d125a12016a6bf41a4971148bd2de870)
This commit is contained in:
parent
8c68dfb8ce
commit
66caec31c9
|
@ -171,12 +171,21 @@ namespace NzbDrone.Core.Download.Clients.Transmission
|
||||||
|
|
||||||
public override DownloadClientInfo GetStatus()
|
public override DownloadClientInfo GetStatus()
|
||||||
{
|
{
|
||||||
var config = _proxy.GetConfig(Settings);
|
string destDir;
|
||||||
var destDir = config.DownloadDir;
|
|
||||||
|
|
||||||
if (Settings.TvCategory.IsNotNullOrWhiteSpace())
|
if (Settings.TvDirectory.IsNotNullOrWhiteSpace())
|
||||||
{
|
{
|
||||||
destDir = string.Format("{0}/{1}", destDir, Settings.TvCategory);
|
destDir = Settings.TvDirectory;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var config = _proxy.GetConfig(Settings);
|
||||||
|
destDir = config.DownloadDir;
|
||||||
|
|
||||||
|
if (Settings.TvCategory.IsNotNullOrWhiteSpace())
|
||||||
|
{
|
||||||
|
destDir = $"{destDir}/{Settings.TvCategory}";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return new DownloadClientInfo
|
return new DownloadClientInfo
|
||||||
|
|
Loading…
Reference in New Issue