Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/6079f1ef11c675a42ef47ae234dd7ad85d9d94ce
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
7 additions and
1 deletions
@ -101,5 +101,11 @@ namespace NzbDrone.Core.Test.ParserTests
{
Parser . Parser . ParseReleaseGroup ( title ) . Should ( ) . Be ( expected ) ;
}
[TestCase("Terrible.Anime.Title.001.DBOX.480p.x264-iKaos [v3] [ 6 AFFEF6B ] ")]
public void should_not_parse_anime_hash_as_release_group ( string title )
{
Parser . Parser . ParseReleaseGroup ( title ) . Should ( ) . BeNull ( ) ;
}
}
}
@ -423,7 +423,7 @@ namespace NzbDrone.Core.Parser
RegexOptions . IgnoreCase | RegexOptions . Compiled ) ;
private static readonly Regex InvalidReleaseGroupRegex = new Regex ( @"^ [se]\d+$", RegexOptions . IgnoreCase | RegexOptions . Compiled ) ;
private static readonly Regex InvalidReleaseGroupRegex = new Regex ( @"^ ( [se]\d+|[0-9a-f]{8}) $", RegexOptions . IgnoreCase | RegexOptions . Compiled ) ;
private static readonly Regex AnimeReleaseGroupRegex = new Regex ( @"^(?:\[(?<subgroup>(?!\s).+?(?<!\s))\](?:_|-|\s|\.)?)" ,