Fixed: Use QBittorrent category savepath for healthcheck

(cherry picked from commit 4f281669fcd460efa4191590de31da12c7e4271d)
pull/5547/head
ta264 4 years ago committed by Mark McDowall
parent 835910843b
commit 68791ea98a

@ -360,10 +360,30 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent
public override DownloadClientInfo GetStatus()
{
var version = Proxy.GetApiVersion(Settings);
var config = Proxy.GetConfig(Settings);
var destDir = new OsPath(config.SavePath);
if (Settings.TvCategory.IsNotNullOrWhiteSpace() && version >= Version.Parse("2.0"))
{
var label = Proxy.GetLabels(Settings)[Settings.TvCategory];
if (label.SavePath.IsNotNullOrWhiteSpace())
{
var labelDir = new OsPath(label.SavePath);
if (labelDir.IsRooted)
{
destDir = labelDir;
}
else
{
destDir = destDir + labelDir;
}
}
}
return new DownloadClientInfo
{
IsLocalhost = Settings.Host == "127.0.0.1" || Settings.Host == "localhost",

Loading…
Cancel
Save