Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/c7ef370060ba4056065238deaf50a645341f71a8
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
1 deletions
@ -50,6 +50,7 @@ namespace NzbDrone.Core.Test.ParserTests
[TestCase("Songs of Experience (Deluxe Edition)", "Songs of Experience")]
[TestCase("Mr. Bad Guy [Special Edition] ", " Mr . Bad Guy ")]
[TestCase("Sweet Dreams (Album)", "Sweet Dreams")]
[TestCase("Now What?! (Limited Edition)", "Now What?!")]
public void should_remove_common_tags_from_album_title ( string title , string correct )
{
var result = Parser . Parser . CleanAlbumTitle ( title ) ;
@ -200,7 +200,7 @@ namespace NzbDrone.Core.Parser
private static readonly string [ ] Numbers = new [ ] { "zero" , "one" , "two" , "three" , "four" , "five" , "six" , "seven" , "eight" , "nine" } ;
private static readonly Regex CommonTagRegex = new Regex ( @"(\[|\(){1}(version| deluxe|single|clean|album|special|bonus)+\s*.*(\]|\)){1}", RegexOptions . IgnoreCase | RegexOptions . Compiled ) ;
private static readonly Regex CommonTagRegex = new Regex ( @"(\[|\(){1}(version| limited| deluxe|single|clean|album|special|bonus)+\s*.*(\]|\)){1}", RegexOptions . IgnoreCase | RegexOptions . Compiled ) ;
public static ParsedTrackInfo ParseMusicPath ( string path )
{