Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/aa19ddfbfd9eaef55e3eb9ac0b11a64e0eedeef4
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
5 additions and
0 deletions
@ -101,6 +101,7 @@ namespace NzbDrone.Core.Test.ParserTests
[TestCase("[HorribleSubs] Series 100 S2 - 07 [ 1080 p ] . mkv ", " Series 100 S2 ", 7, 0, 0)]
[TestCase("[abc] Adventure Series : 30 [ Web ] [ MKV ] [ h264 ] [ 720 p ] [ AAC 2.0 ] [ abc ] ", " Adventure Series : ", 30, 0, 0)]
[TestCase("[XKsub] Series Title S2 [ 05 ] [ HEVC - 10 bit 1080 p AAC ] [ CHS & CHT & JPN ] ", " Series Title S2 ", 5, 0, 0)]
[TestCase("[Cheetah-Raws] Super Long Anime - 1000 ( YTV 1280 x720 x264 AAC ) ", " Super Long Anime ", 1000, 0, 0)]
//[TestCase("", "", 0, 0, 0)]
public void should_parse_absolute_numbers ( string postTitle , string title , int absoluteEpisodeNumber , int seasonNumber , int episodeNumber )
{
@ -227,6 +227,10 @@ namespace NzbDrone.Core.Parser
new Regex ( @"^(?:\[(?<subgroup>.+?)\][-_. ]?)?(?<title>.+?)[-_. ]+?(?:Episode[-_. ]+?)(?<absoluteepisode>\d{1}(\.\d{1,2})?(?!\d+))" ,
RegexOptions . IgnoreCase | RegexOptions . Compiled ) ,
// Anime - 4 digit absolute episode number
new Regex ( @"^(?:\[(?<subgroup>.+?)\][-_. ]?)(?<title>.+?)[-_. ]+?(?<absoluteepisode>\d{4}(\.\d{1,2})?(?!\d+))" ,
RegexOptions . IgnoreCase | RegexOptions . Compiled ) ,
// Anime - Absolute episode number in square brackets
new Regex ( @"^(?:\[(?<subgroup>.+?)\][-_. ]?)(?<title>.+?)[-_. ]+?\[(?<absoluteepisode>\d{2,3}(\.\d{1,2})?(?!\d+))\]" ,
RegexOptions . IgnoreCase | RegexOptions . Compiled ) ,