Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/577604fcccac15832716cf24467e5e94d28febb1
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
2 deletions
@ -33,10 +33,10 @@ namespace NzbDrone.Core.HealthCheck.Checks
if ( deletedSeries . Count ( ) = = 1 )
{
return new HealthCheck ( GetType ( ) , HealthCheckResult . Error , $"Series {seriesText} was removed from TheTVDB" , " Health-Checks #series_removed_from_thetvdb") ;
return new HealthCheck ( GetType ( ) , HealthCheckResult . Error , $"Series {seriesText} was removed from TheTVDB" , " #series_removed_from_thetvdb") ;
}
return new HealthCheck ( GetType ( ) , HealthCheckResult . Error , $"Series {seriesText} were removed from TheTVDB" , " Health-Checks #series_removed_from_thetvdb") ;
return new HealthCheck ( GetType ( ) , HealthCheckResult . Error , $"Series {seriesText} were removed from TheTVDB" , " #series_removed_from_thetvdb") ;
}
public bool ShouldCheckOnEvent ( SeriesDeletedEvent deletedEvent )