Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/4123745a6b3614ac1150b369b59b7de5c6484e06
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
20 additions and
9 deletions
@ -114,14 +114,27 @@ namespace NzbDrone.Core.DecisionEngine
}
}
if ( parsedEpisodeInfo = = null | | parsedEpisodeInfo . SeriesTitle . IsNullOrWhiteSpace ( ) & & searchCriteria ! = null )
if ( searchCriteria ! = null )
{
var remoteEpisode = new RemoteEpisode
if ( parsedEpisodeInfo = = null )
{
Release = report
} ;
parsedEpisodeInfo = new ParsedEpisodeInfo
{
Language = LanguageParser . ParseLanguage ( report . Title ) ,
Quality = QualityParser . ParseQuality ( report . Title )
} ;
}
if ( parsedEpisodeInfo . SeriesTitle . IsNullOrWhiteSpace ( ) )
{
var remoteEpisode = new RemoteEpisode
{
Release = report ,
ParsedEpisodeInfo = parsedEpisodeInfo
} ;
decision = new DownloadDecision ( remoteEpisode , new Rejection ( "Unable to parse release" ) ) ;
decision = new DownloadDecision ( remoteEpisode , new Rejection ( "Unable to parse release" ) ) ;
}
}
}
catch ( Exception e )
@ -163,9 +163,8 @@ namespace Sonarr.Api.V3.Indexers
catch ( Exception ex )
{
_logger . Error ( ex , "Episode search failed: " + ex . Message ) ;
throw new NzbDroneClientException ( HttpStatusCode . InternalServerError , ex . Message ) ;
}
return new List < ReleaseResource > ( ) ;
}
private List < ReleaseResource > GetSeasonReleases ( int seriesId , int seasonNumber )
@ -184,9 +183,8 @@ namespace Sonarr.Api.V3.Indexers
catch ( Exception ex )
{
_logger . Error ( ex , "Season search failed: " + ex . Message ) ;
throw new NzbDroneClientException ( HttpStatusCode . InternalServerError , ex . Message ) ;
}
return new List < ReleaseResource > ( ) ;
}
private List < ReleaseResource > GetRss ( )