Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/9a0ca650a3fda891d2d4a773a72520d30622bd3f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
1 deletions
@ -53,6 +53,8 @@ namespace NzbDrone.Core.Test.ParserTests
[TestCase("Movie.Name.2022.1080p.BluRay.x264-[YTS.AG] ", " YTS . AG ")]
[TestCase("Movie.Name.2022.1080p.BluRay.x264-VARYG", "VARYG")]
[TestCase("Movie.Title.2019.1080p.AMZN.WEB-Rip.DDP.5.1.HEVC", null)]
[TestCase("Movie Name (2017) [2160p REMUX] [ HEVC DV HYBRID HDR10 + Dolby TrueHD Atmos 7 1 24 - bit Audio English ] [ Data Lass ] ", null)]
[TestCase("Movie Name (2017) [2160p REMUX] [ HEVC DV HYBRID HDR10 + Dolby TrueHD Atmos 7 1 24 - bit Audio English ] - DataLass ", " DataLass ")]
public void should_parse_expected_release_group ( string title , string expected )
{
Parser . Parser . ParseReleaseGroup ( title ) . Should ( ) . Be ( expected ) ;
@ -140,7 +140,7 @@ namespace NzbDrone.Core.Parser
private static readonly Regex CleanQualityBracketsRegex = new Regex ( @"\[[a-z0-9 ._-]+\]$" ,
RegexOptions . IgnoreCase | RegexOptions . Compiled ) ;
private static readonly Regex ReleaseGroupRegex = new Regex ( @"-(?<releasegroup>[a-z0-9]+(?<part2>-[a-z0-9]+)?(?!.+?(?:480p|576p|720p|1080p|2160p)))(?<!(?:WEB-(DL|Rip)|Blu-Ray|480p|576p|720p|1080p|2160p|DTS-HD|DTS-X|DTS-MA|DTS-ES|-ES|-EN|-CAT|-HDRip| [ ._]\d{4}-\d{2}|-\d{2}|tmdb(id)?-(?<tmdbid>\d+)|(?<imdbid>tt\d{7,8}))(?:\k<part2>)?)(?:\b|[-._ ]|$)|[-._ ]\[(?<releasegroup>[a-z0-9]+)\]$",
private static readonly Regex ReleaseGroupRegex = new Regex ( @"-(?<releasegroup>[a-z0-9]+(?<part2>-[a-z0-9]+)?(?!.+?(?:480p|576p|720p|1080p|2160p)))(?<!(?:WEB-(DL|Rip)|Blu-Ray|480p|576p|720p|1080p|2160p|DTS-HD|DTS-X|DTS-MA|DTS-ES|-ES|-EN|-CAT|-HDRip| \d{1,2}-bit| [ ._]\d{4}-\d{2}|-\d{2}|tmdb(id)?-(?<tmdbid>\d+)|(?<imdbid>tt\d{7,8}))(?:\k<part2>)?)(?:\b|[-._ ]|$)|[-._ ]\[(?<releasegroup>[a-z0-9]+)\]$",
RegexOptions . IgnoreCase | RegexOptions . Compiled ) ;
private static readonly Regex InvalidReleaseGroupRegex = new Regex ( @"^([se]\d+|[0-9a-f]{8})$" , RegexOptions . IgnoreCase | RegexOptions . Compiled ) ;