mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-02 21:15:05 +00:00
Fixed: (Parser) Strip produced by
from track titles
This commit is contained in:
parent
7290faea78
commit
81870ea481
2 changed files with 3 additions and 1 deletions
|
@ -72,6 +72,8 @@ public void should_remove_common_tags_from_album_title(string title, string corr
|
|||
[TestCase("Science Fiction/Double Feature", "Science Fiction/Double Feature")]
|
||||
[TestCase("Dancing Feathers", "Dancing Feathers")]
|
||||
[TestCase("D.J. (2017 Remaster)", "D.J.")]
|
||||
[TestCase("The Kiss (Skit) (Produced By Eminem)", "The Kiss (Skit)")]
|
||||
[TestCase("Without Me (Produced By Eminem & Jeff Bass)", "Without Me")]
|
||||
public void should_remove_common_tags_from_track_title(string title, string correct)
|
||||
{
|
||||
var result = Parser.Parser.CleanTrackTitle(title);
|
||||
|
|
|
@ -217,7 +217,7 @@ public static class Parser
|
|||
|
||||
private static readonly Regex[] CommonTagRegex = new Regex[]
|
||||
{
|
||||
new Regex(@"(\[|\()*\b((featuring|feat.|feat|ft|ft.)\s{1}){1}\s*.*(\]|\))*", RegexOptions.IgnoreCase | RegexOptions.Compiled),
|
||||
new Regex(@"(\[|\()*\b((featuring|feat.|feat|ft|ft.|produced by)\s{1}){1}\s*.*(\]|\))*", RegexOptions.IgnoreCase | RegexOptions.Compiled),
|
||||
new Regex(@"(?:\(|\[)(?:[^\(\[]*)(?:version|limited|deluxe|single|clean|album|special|bonus|promo|remaster(ed)?)(?:[^\)\]]*)(?:\)|\])", RegexOptions.IgnoreCase | RegexOptions.Compiled)
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue