mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-26 02:26:59 +00:00
Fixed: Cleaning percent signs from release names
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
@@ -134,5 +134,13 @@ namespace NzbDrone.Core.Test.ParserTests
|
||||
{
|
||||
"Tokyo Ghoul A".CleanArtistName().Should().Be("tokyoghoula");
|
||||
}
|
||||
|
||||
[TestCase("3%", "3percent")]
|
||||
[TestCase("Teen Top & 100% Outing Brothers", "teentop100percentoutingbrothers")]
|
||||
[TestCase("Big Jay Oakerson's What's Your F@%king Deal?!", "bigjayoakersonswhatsyourfkingdeal")]
|
||||
public void should_replace_percent_sign_with_percent_following_numbers(string input, string expected)
|
||||
{
|
||||
input.CleanArtistName().Should().Be(expected);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -159,6 +159,8 @@ namespace NzbDrone.Core.Parser
|
||||
string.Empty,
|
||||
RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
||||
|
||||
private static readonly Regex PercentRegex = new Regex(@"(?<=\b\d+)%", RegexOptions.Compiled);
|
||||
|
||||
private static readonly Regex FileExtensionRegex = new Regex(@"\.[a-z0-9]{2,4}$",
|
||||
RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
||||
|
||||
@@ -479,6 +481,8 @@ namespace NzbDrone.Core.Parser
|
||||
if (long.TryParse(name, out number))
|
||||
return name;
|
||||
|
||||
name = PercentRegex.Replace(name, "percent");
|
||||
|
||||
return NormalizeRegex.Replace(name).ToLower().RemoveAccent();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user