Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/576f5c5c09804cabc0df2425d6a2857fafe3bb17
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
5 additions and
8 deletions
@ -155,15 +155,12 @@ namespace NzbDrone.Core.Providers
Logger . Debug ( "Finished searching all indexers. Total {0}" , reports . Count ) ;
notification . CurrentMessage = "Processing search results" ;
if ( ProcessSearchResults ( notification , reports , series , episode . SeasonNumber , episode . EpisodeNumber ) . Count = = 1 )
return true ;
//TODO:fix this so when search returns more than one episode
//TODO:-its populated with more than the original episode.
reports . ForEach ( c = >
{
c . Series = series ;
} ) ;
return ( ProcessSearchResults ( notification , reports , series , episode . SeasonNumber , episode . EpisodeNumber ) . Count = = 1 ) ;
Logger . Warn ( "Unable to find {0} in any of indexers." , episode ) ;
notification . CurrentMessage = String . Format ( "Unable to find {0} in any of indexers." , episode ) ;
return false ;
}
public List < EpisodeParseResult > PerformSearch ( ProgressNotification notification , Series series , int seasonNumber , IList < Episode > episodes = null )