1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00

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:
ta264 2020-06-28 22:09:13 +01:00 committed by Mark McDowall
parent 8c68dfb8ce
commit 66caec31c9

View File

@ -171,12 +171,21 @@ public override void RemoveItem(DownloadClientItem item, bool deleteData)
public override DownloadClientInfo GetStatus()
{
var config = _proxy.GetConfig(Settings);
var destDir = config.DownloadDir;
string destDir;
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