Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/0ae1b3acceb28e6217bc215444f28866b2b7f230 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: False positive in remote path check with transmission

Fixes 

Correctly use the download directory when it's set
pull/1935/head
ta264 5 years ago committed by Qstick
parent 36a1d190db
commit 0ae1b3acce

@ -164,12 +164,20 @@ namespace NzbDrone.Core.Download.Clients.Transmission
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…
Cancel
Save