Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/502c2fa6cf64d95e3de81264f242bc6684fff2b9
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
2 deletions
@ -10,7 +10,7 @@ namespace NzbDrone.Core.HealthCheck.Checks
{
private readonly IRuntimeProvider _runtimeProvider ;
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 ( IRuntimeProvider runtimeProvider , Logger logger )
{
@ -25,7 +25,8 @@ namespace NzbDrone.Core.HealthCheck.Checks
return new HealthCheck ( GetType ( ) ) ;
}
var versionMatch = VersionRegex . Match ( _runtimeProvider . GetVersion ( ) ) ;
var versionString = _runtimeProvider . GetVersion ( ) ;
var versionMatch = VersionRegex . Match ( versionString ) ;
if ( versionMatch . Success )
{