Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/e50e79167acfb5a8fc4a76a1ca95285616142eeb
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
2 deletions
@ -24,6 +24,8 @@ namespace NzbDrone.Core.Test.ParserTests
[TestCase("test/test", "testtest")]
[TestCase("90210", "90210")]
[TestCase("24", "24")]
[TestCase("Test: Something à Deux", "testsomethingdeux")]
[TestCase("Parler à", "parlera")]
public void should_remove_special_characters_and_casing ( string dirty , string clean )
{
var result = dirty . CleanArtistName ( ) ;
@ -154,7 +154,7 @@ namespace NzbDrone.Core.Parser
new Regex ( @"^b00bs$" , RegexOptions . Compiled | RegexOptions . IgnoreCase )
} ;
private static readonly RegexReplace NormalizeRegex = new RegexReplace ( @"((?:\b|_)(?<!^)( a(?!$)|an|the|and|or|of)(?!$)(?:\b|_))|\W|_",
private static readonly RegexReplace NormalizeRegex = new RegexReplace ( @"((?:\b|_)(?<!^)( [ aà] (?!$)|an|the|and|or|of)(?!$)(?:\b|_))|\W|_",
string . Empty ,
RegexOptions . IgnoreCase | RegexOptions . Compiled ) ;
@ -521,7 +521,7 @@ namespace NzbDrone.Core.Parser
name = PercentRegex . Replace ( name , "percent" ) ;
return NormalizeRegex . Replace ( name ) . ToLower ( ) . RemoveAccent ( ) ;
return NormalizeRegex . Replace ( name ) . ToLower Invariant ( ) . RemoveAccent ( ) ;
}
public static string NormalizeTrackTitle ( this string title )