Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/a3f630a6f6cc04b6895458ef39a35481797be8d7
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
5 additions and
5 deletions
@ -526,7 +526,7 @@ namespace NzbDrone.Core.Indexers.Cardigann
var all = variablesRegExMatches . Groups [ 0 ] . Value ;
var variable = variablesRegExMatches . Groups [ 1 ] . Value ;
var value = variables [ variable ] . ToString ( ) ;
var value = ( string ) variables [ variable ] ;
if ( modifier ! = null )
{
value = modifier ( value ) ;
@ -177,7 +177,7 @@ namespace NzbDrone.Core.Indexers.Definitions
{
var pageableRequests = new IndexerPageableRequestChain ( ) ;
pageableRequests . Add ( GetPagedRequests ( string . Format ( "{0}" , searchCriteria . Sanitized SearchTerm ) , searchCriteria . Categories , searchCriteria . ImdbId ) ) ;
pageableRequests . Add ( GetPagedRequests ( string . Format ( "{0}" , searchCriteria . Sanitized TvSearchString ) , searchCriteria . Categories , searchCriteria . ImdbId ) ) ;
return pageableRequests ;
}
@ -178,7 +178,7 @@ namespace NzbDrone.Core.Indexers.Definitions
{
var pageableRequests = new IndexerPageableRequestChain ( ) ;
pageableRequests . Add ( GetPagedRequests ( string . Format ( "{0}" , searchCriteria . S earchTerm ) , searchCriteria . Categories , searchCriteria . ImdbId ) ) ;
pageableRequests . Add ( GetPagedRequests ( string . Format ( "{0}" , searchCriteria . S anitizedTvSearchString ) , searchCriteria . Categories , searchCriteria . ImdbId ) ) ;
return pageableRequests ;
}
@ -227,7 +227,7 @@ namespace NzbDrone.Core.Indexers.Definitions
{
var pageableRequests = new IndexerPageableRequestChain ( ) ;
pageableRequests . Add ( GetPagedRequests ( string . Format ( "{0}" , searchCriteria . S earchTerm ) , searchCriteria . Categories , searchCriteria . ImdbId ) ) ;
pageableRequests . Add ( GetPagedRequests ( string . Format ( "{0}" , searchCriteria . S anitizedTvSearchString ) , searchCriteria . Categories , searchCriteria . ImdbId ) ) ;
return pageableRequests ;
}
@ -243,7 +243,7 @@ namespace NzbDrone.Core.Indexers.Definitions
{
var pageableRequests = new IndexerPageableRequestChain ( ) ;
pageableRequests . Add ( GetPagedRequests ( string . Format ( "{0}" , searchCriteria . Sanitized SearchTerm ) , searchCriteria . Categories ) ) ;
pageableRequests . Add ( GetPagedRequests ( string . Format ( "{0}" , searchCriteria . Sanitized TvSearchString ) , searchCriteria . Categories ) ) ;
return pageableRequests ;
}