mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
Protect against Qbittorrent edgecase if users add torrents manually with Keep top-level folder disabled
This commit is contained in:
parent
fe0d8bb7da
commit
05820ac272
@ -142,11 +142,6 @@ public override IEnumerable<DownloadClientItem> GetItems()
|
|||||||
SeedRatio = torrent.Ratio
|
SeedRatio = torrent.Ratio
|
||||||
};
|
};
|
||||||
|
|
||||||
if (version >= new Version("2.6.1"))
|
|
||||||
{
|
|
||||||
item.OutputPath = _remotePathMappingService.RemapRemoteToLocal(Settings.Host, new OsPath(torrent.ContentPath));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Avoid removing torrents that haven't reached the global max ratio.
|
// Avoid removing torrents that haven't reached the global max ratio.
|
||||||
// Removal also requires the torrent to be paused, in case a higher max ratio was set on the torrent itself (which is not exposed by the api).
|
// Removal also requires the torrent to be paused, in case a higher max ratio was set on the torrent itself (which is not exposed by the api).
|
||||||
item.CanMoveFiles = item.CanBeRemoved = (torrent.State == "pausedUP" && HasReachedSeedLimit(torrent, config));
|
item.CanMoveFiles = item.CanBeRemoved = (torrent.State == "pausedUP" && HasReachedSeedLimit(torrent, config));
|
||||||
@ -207,6 +202,19 @@ public override IEnumerable<DownloadClientItem> GetItems()
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (version >= new Version("2.6.1"))
|
||||||
|
{
|
||||||
|
if (torrent.ContentPath != torrent.SavePath)
|
||||||
|
{
|
||||||
|
item.OutputPath = _remotePathMappingService.RemapRemoteToLocal(Settings.Host, new OsPath(torrent.ContentPath));
|
||||||
|
}
|
||||||
|
else if (item.Status == DownloadItemStatus.Completed)
|
||||||
|
{
|
||||||
|
item.Status = DownloadItemStatus.Warning;
|
||||||
|
item.Message = "Unable to import since content path is equal to root download directory, perhaps Keep top-level folder was disabled for this torrent?";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
queueItems.Add(item);
|
queueItems.Add(item);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user