Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/9e45b9e80836ec21b815ee6bde592119b5222a46
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
19 additions and
1 deletions
@ -100,9 +100,27 @@ namespace Sonarr.Api.V3.Indexers
}
else
{
throw new NzbDroneClientException ( HttpStatusCode . NotFound , "Unable to find matching series and episodes" ) ;
throw new NzbDroneClientException ( HttpStatusCode . NotFound , "Unable to find matching series and episodes" ) ;
}
}
else if ( remoteEpisode . Episodes . Empty ( ) )
{
var episodes = _parsingService . GetEpisodes ( remoteEpisode . ParsedEpisodeInfo , remoteEpisode . Series , true ) ;
if ( episodes . Empty ( ) & & release . EpisodeId . HasValue )
{
var episode = _episodeService . GetEpisode ( release . EpisodeId . Value ) ;
episodes = new List < Episode > { episode } ;
}
remoteEpisode . Episodes = episodes ;
}
if ( remoteEpisode . Episodes . Empty ( ) )
{
throw new NzbDroneClientException ( HttpStatusCode . NotFound , "Unable to parse episodes in the release" ) ;
}
_downloadService . DownloadReport ( remoteEpisode ) ;
}