Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/2345984bdac95b828362fd642374da4a32d34c07
You should set ROOT_URL correctly, otherwise the web may not work correctly.
6 changed files with
7 additions and
18 deletions
@ -11,7 +11,7 @@ namespace NzbDrone.Common.Http
public String Method { get ; private set ; }
public List < Object > Parameters { get ; private set ; }
public JsonRpcRequestBuilder ( String baseUri , String method , Object[ ] parameters )
public JsonRpcRequestBuilder ( String baseUri , String method , IEnumerable< Object > parameters )
: base ( baseUri )
{
Method = method ;
@ -13,14 +13,6 @@ namespace NzbDrone.Core.DecisionEngine.Specifications.Search
_logger = logger ;
}
public string RejectionReason
{
get
{
return "Not enough Torrent seeders" ;
}
}
public RejectionType Type
{
get
@ -41,8 +33,8 @@ namespace NzbDrone.Core.DecisionEngine.Specifications.Search
if ( torrentInfo . Seeds ! = null & & torrentInfo . Seeds < 1 )
{
_logger . Debug ( " Only {0} seeders, skipping. ", torrentInfo . Seeds ) ;
return Decision . Reject ( "No seeders") ;
_logger . Debug ( " Not enough seeders. ({0}) ", torrentInfo . Seeds ) ;
return Decision . Reject ( "No t enough seeders. ({0}) ", torrentInfo . Seeds ) ;
}
return Decision . Accept ( ) ;
@ -195,8 +195,7 @@ namespace NzbDrone.Core.Download.Clients.Deluge
protected override void Test ( List < ValidationFailure > failures )
{
failures . AddIfNotNull ( TestConnection ( ) ) ;
if ( failures . Any ( ) )
return ;
if ( failures . Any ( ) ) return ;
failures . AddIfNotNull ( TestCategory ( ) ) ;
failures . AddIfNotNull ( TestGetTorrents ( ) ) ;
}
@ -10,7 +10,7 @@ namespace NzbDrone.Core.Download.Clients.Deluge
public Int32 Code { get ; set ; }
public DelugeException ( String message , Int32 code )
: base ( message )
: base ( message + " (code " + code + ")" )
{
Code = code ;
}
@ -175,8 +175,7 @@ namespace NzbDrone.Core.Download.Clients.Transmission
protected override void Test ( List < ValidationFailure > failures )
{
failures . AddIfNotNull ( TestConnection ( ) ) ;
if ( failures . Any ( ) )
return ;
if ( failures . Any ( ) ) return ;
failures . AddIfNotNull ( TestGetTorrents ( ) ) ;
}
@ -191,8 +191,7 @@ namespace NzbDrone.Core.Download.Clients.UTorrent
protected override void Test ( List < ValidationFailure > failures )
{
failures . AddIfNotNull ( TestConnection ( ) ) ;
if ( failures . Any ( ) )
return ;
if ( failures . Any ( ) ) return ;
failures . AddIfNotNull ( TestGetTorrents ( ) ) ;
}