Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/b77e5b14e1b39a3bf784aa11f7c4dc5e10b9b45e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
5 additions and
3 deletions
@ -15,6 +15,9 @@ namespace NzbDrone.Mono.Test.EnvironmentInfo.VersionAdapters
[TestCase("10.8")]
[TestCase("10.8.1")]
[TestCase("10.11.20")]
[TestCase("11.7.9")]
[TestCase("12.6.8")]
[TestCase("13.5.1")]
public void should_get_version_info ( string versionString )
{
var fileContent = File . ReadAllText ( GetTestPath ( "Files/macOS/SystemVersion.plist" ) ) . Replace ( "10.0.0" , versionString ) ;
@ -10,9 +10,8 @@ namespace NzbDrone.Mono.EnvironmentInfo.VersionAdapters
{
private const string PLIST_DIR = "/System/Library/CoreServices/" ;
private static readonly Regex DarwinVersionRegex = new Regex ( "<string>(?<version>10\\.\\d{1,2}\\.?\\d{0,2}?)<\\/string>" ,
RegexOptions . Compiled |
RegexOptions . IgnoreCase ) ;
private static readonly Regex DarwinVersionRegex = new ( "<key>ProductVersion<\\/key>\\s*<string>(?<version>1\\d\\.\\d{1,2}\\.?\\d{0,2}?)<\\/string>" ,
RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
private readonly IDiskProvider _diskProvider ;
private readonly Logger _logger ;