Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/80b698a74923ac011ae7f219f829fdaa6d098bf0
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
5 additions and
5 deletions
@ -97,6 +97,11 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent
var result = ProcessRequest ( request , settings ) ;
if ( settings . MovieCategory . IsNotNullOrWhiteSpace ( ) )
{
request . AddFormParameter ( "category" , settings . MovieCategory ) ;
}
// Note: Current qbit versions return nothing, so we can't do != "Ok." here.
if ( result = = "Fails." )
{
@ -109,11 +114,6 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent
var request = BuildRequest ( settings ) . Resource ( removeData ? "/command/deletePerm" : "/command/delete" )
. Post ( )
. AddFormParameter ( "hashes" , hash ) ;
if ( settings . MovieCategory . IsNotNullOrWhiteSpace ( ) )
{
request . AddFormParameter ( "category" , settings . MovieCategory ) ;
}
ProcessRequest ( request , settings ) ;
}