Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/7cb1e91ba1766091aebf126f5aa26a495c55ebcc
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
1 deletions
@ -402,6 +402,7 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.SabnzbdTests
[TestCase("0.8.0", true)]
[TestCase("1.0.0", true)]
[TestCase("1.0.0RC1", true)]
[TestCase("1.1.x", true)]
public void should_test_version ( string version , bool expected )
{
Mocker . GetMock < ISabnzbdProxy > ( )
@ -29,7 +29,8 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
_proxy = proxy ;
}
private static readonly Regex VersionRegex = new Regex ( @"(?<major>\d+)\.(?<minor>\d+)\.(?<patch>\d+)(?<candidate>.*)" , RegexOptions . Compiled ) ;
// patch can be a number (releases) or 'x' (git)
private static readonly Regex VersionRegex = new Regex ( @"(?<major>\d+)\.(?<minor>\d+)\.(?<patch>\d+|x)(?<candidate>.*)" , RegexOptions . Compiled ) ;
protected override string AddFromNzbFile ( RemoteEpisode remoteEpisode , string filename , byte [ ] fileContent )
{