Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/a5cd1fc490b4b83f4f5fe463accb75af9585ae69
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
3 deletions
@ -14,8 +14,8 @@ namespace NzbDrone.Core.Test
{
[Test]
[Row("WEEDS.S03E01-06.DUAL.BDRip.XviD.AC3.-HELLYWOOD", 3, 1)]
// [Row("Two.and.a.Half.Me.103.720p.HDTV.X264-DIMENSION", 1, 3)] //This only worked because the 0 doesn't affect the results
//[Row("Two.and.a.Half.Me.113.720p.HDTV.X264-DIMENSION", 1, 13)] //This fail ed because the 1 matters in this case
[Row("Two.and.a.Half.Me.103.720p.HDTV.X264-DIMENSION", 1, 3)] //This only worked because the 0 doesn't affect the results
//[Row("Two.and.a.Half.Me.113.720p.HDTV.X264-DIMENSION", 1, 13)] //This fail s because the 1 matters in this case
[Row("Chuck.4x05.HDTV.XviD-LOL", 4, 5)]
[Row("The.Girls.Next.Door.S03E06.DVDRip.XviD-WiDE", 3, 6)]
[Row("Degrassi.S10E27.WS.DSR.XviD-2HD", 10, 27)]
@ -19,7 +19,7 @@ namespace NzbDrone.Core
private static readonly Regex [ ] ReportTitleRegex = new [ ]
{
new Regex ( @"(?<title>.+?)?\W?(?<year>\d+?)?\WS?(?<season>\d+)(?:\-|\.|[a-z])(?<episode>\d+)\W(?!\\)" , RegexOptions . IgnoreCase | RegexOptions . Compiled ) ,
new Regex ( @"(?<title>.+?)?\W?(?<year>\d+?)?\WS?(?<season>\d+)\ W (?<episode>\d+)\W(?!\\)", RegexOptions . IgnoreCase | RegexOptions . Compiled ) //Supports 103 naming
new Regex ( @"(?<title>.+?)?\W?(?<year>\d+?)?\WS?(?<season>\d+)\ w (?<episode>\d+)\W(?!\\)", RegexOptions . IgnoreCase | RegexOptions . Compiled ) //Supports 103 naming
} ;
private static readonly Regex NormalizeRegex = new Regex ( @"((\s|^)the(\s|$))|((\s|^)and(\s|$))|[^a-z]" , RegexOptions . IgnoreCase | RegexOptions . Compiled ) ;