Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/04160a61c9d4b125a4250bc5d1082d80e19e3cdf
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
1 deletions
@ -164,6 +164,7 @@ namespace NzbDrone.Core.Test.ParserTests
[TestCase("[Kaylith] Isshuukan Friends Specials - 01 [ BD 720 p AAC ] [ B7EEE164 ] . mkv ", false)]
[TestCase("WEEDS.S03E01-06.DUAL.Blu-ray.AC3.-HELLYWOOD.avi", false)]
[TestCase("WEEDS.S03E01-06.DUAL.720p.Blu-ray.AC3.-HELLYWOOD.avi", false)]
[TestCase("[Elysium] Lucky . Star . 01 ( BD . 720 p . AAC . DA ) [ 0 BB96AD8 ] . mkv ", false)]
public void should_parse_bluray720p_quality ( string title , bool proper )
{
ParseAndVerifyQuality ( title , Quality . Bluray720p , proper ) ;
@ -39,7 +39,7 @@ namespace NzbDrone.Core.Parser
private static readonly Regex OtherSourceRegex = new Regex ( @"(?<hdtv>HD[-_. ]TV)|(?<sdtv>SD[-_. ]TV)" , RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
private static readonly Regex AnimeBlurayRegex = new Regex ( @"bd(?:720|1080)|(?<= \[|\(|\s)bd(?=\s|\)|\ ])", RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
private static readonly Regex AnimeBlurayRegex = new Regex ( @"bd(?:720|1080)|(?<= [-_. (\[])bd(?=[-_. )\] ])", RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
private static readonly Regex HighDefPdtvRegex = new Regex ( @"hr[-_. ]ws" , RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;