mirror of
https://github.com/Lidarr/Lidarr
synced 2026-05-01 17:11:24 +02:00
Fixed: False positive in remote path check with transmission
Fixes #1771 Correctly use the download directory when it's set
This commit is contained in:
parent
36a1d190db
commit
0ae1b3acce
1 changed files with 13 additions and 5 deletions
|
|
@ -164,12 +164,20 @@ public override void RemoveItem(string downloadId, bool deleteData)
|
|||
|
||||
public override DownloadClientInfo GetStatus()
|
||||
{
|
||||
var config = _proxy.GetConfig(Settings);
|
||||
var destDir = config.DownloadDir;
|
||||
|
||||
if (Settings.MusicCategory.IsNotNullOrWhiteSpace())
|
||||
string destDir;
|
||||
if (Settings.TvDirectory.IsNotNullOrWhiteSpace())
|
||||
{
|
||||
destDir = string.Format("{0}/{1}", destDir, Settings.MusicCategory);
|
||||
destDir = Settings.TvDirectory;
|
||||
}
|
||||
else
|
||||
{
|
||||
var config = _proxy.GetConfig(Settings);
|
||||
destDir = config.DownloadDir;
|
||||
|
||||
if (Settings.MusicCategory.IsNotNullOrWhiteSpace())
|
||||
{
|
||||
destDir = string.Format("{0}/{1}", destDir, Settings.MusicCategory);
|
||||
}
|
||||
}
|
||||
|
||||
return new DownloadClientInfo
|
||||
|
|
|
|||
Loading…
Reference in a new issue