Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/269ea5597ffc73ba23779d511289c4fd9e46e2e0
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
1 deletions
@ -378,11 +378,13 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent
}
}
var minimumRetention = 60 * 24 * 14 ;
return new DownloadClientInfo
{
IsLocalhost = Settings . Host = = "127.0.0.1" | | Settings . Host = = "localhost" ,
OutputRootFolders = new List < OsPath > { _remotePathMappingService . RemapRemoteToLocal ( Settings . Host , destDir ) } ,
RemovesCompletedDownloads = ( config . MaxRatioEnabled | | config . MaxSeedingTimeEnabled ) & & ( config . MaxRatioAction = = QBittorrentMaxRatioAction . Remove | | config . MaxRatioAction = = QBittorrentMaxRatioAction . DeleteFiles )
RemovesCompletedDownloads = ( config . MaxRatioEnabled | | ( config . MaxSeedingTimeEnabled & & config . MaxSeedingTime < minimumRetention ) ) & & ( config . MaxRatioAction = = QBittorrentMaxRatioAction . Remove | | config . MaxRatioAction = = QBittorrentMaxRatioAction . DeleteFiles )
} ;
}