Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/21c535218336f637d1887d965a88914a5a2925af
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
9 additions and
1 deletions
@ -85,5 +85,13 @@ namespace NzbDrone.Core.Test.HealthCheck.Checks
Subject . Check ( ) . ShouldBeOk ( ) ;
}
[Test]
public void should_return_ok_when_mono_3_10 ( )
{
GivenOutput ( "3.10" ) ;
Subject . Check ( ) . ShouldBeOk ( ) ;
}
}
}
@ -11,7 +11,7 @@ namespace NzbDrone.Core.HealthCheck.Checks
{
private readonly IRuntimeInfo _runtimeInfo ;
private readonly Logger _logger ;
private static readonly Regex VersionRegex = new Regex ( @"(?<=\W|^)(?<version>\d+\.\d+ \.\d+(\.\d+)?)(?=\W)", RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
private static readonly Regex VersionRegex = new Regex ( @"(?<=\W|^)(?<version>\d+\.\d+ ( \.\d+)? (\.\d+)?)(?=\W)", RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
public MonoVersionCheck ( IRuntimeInfo runtimeInfo , Logger logger )
{