mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
Fixed: Remove Series/Episode Reverse Title Checks
This commit is contained in:
parent
6cfc591364
commit
923fcd8b95
1 changed files with 0 additions and 34 deletions
|
@ -168,9 +168,6 @@ namespace NzbDrone.Core.Parser
|
||||||
new Regex(@"^b00bs$", RegexOptions.Compiled | RegexOptions.IgnoreCase)
|
new Regex(@"^b00bs$", RegexOptions.Compiled | RegexOptions.IgnoreCase)
|
||||||
};
|
};
|
||||||
|
|
||||||
//Regex to detect whether the title was reversed.
|
|
||||||
private static readonly Regex ReversedTitleRegex = new Regex(@"[-._ ](p027|p0801|\d{2}E\d{2}S)[-._ ]", RegexOptions.Compiled);
|
|
||||||
|
|
||||||
private static readonly Regex NormalizeRegex = new Regex(@"((?:\b|_)(?<!^)(a(?!$)|an|the|and|or|of)(?:\b|_))|\W|_",
|
private static readonly Regex NormalizeRegex = new Regex(@"((?:\b|_)(?<!^)(a(?!$)|an|the|and|or|of)(?:\b|_))|\W|_",
|
||||||
RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
||||||
|
|
||||||
|
@ -278,16 +275,6 @@ namespace NzbDrone.Core.Parser
|
||||||
|
|
||||||
Logger.Debug("Parsing string '{0}'", title);
|
Logger.Debug("Parsing string '{0}'", title);
|
||||||
|
|
||||||
if (ReversedTitleRegex.IsMatch(title))
|
|
||||||
{
|
|
||||||
var titleWithoutExtension = RemoveFileExtension(title).ToCharArray();
|
|
||||||
Array.Reverse(titleWithoutExtension);
|
|
||||||
|
|
||||||
title = new string(titleWithoutExtension) + title.Substring(titleWithoutExtension.Length);
|
|
||||||
|
|
||||||
Logger.Debug("Reversed name detected. Converted to '{0}'", title);
|
|
||||||
}
|
|
||||||
|
|
||||||
var releaseTitle = RemoveFileExtension(title);
|
var releaseTitle = RemoveFileExtension(title);
|
||||||
|
|
||||||
var simpleTitle = SimpleTitleRegex.Replace(releaseTitle, string.Empty);
|
var simpleTitle = SimpleTitleRegex.Replace(releaseTitle, string.Empty);
|
||||||
|
@ -364,16 +351,6 @@ namespace NzbDrone.Core.Parser
|
||||||
Logger.Debug("Parsing string '{0}' using search criteria artist: '{1}' album: '{2}'",
|
Logger.Debug("Parsing string '{0}' using search criteria artist: '{1}' album: '{2}'",
|
||||||
title, artist.Name.RemoveAccent(), string.Join(", ", album.Select(a => a.Title.RemoveAccent())));
|
title, artist.Name.RemoveAccent(), string.Join(", ", album.Select(a => a.Title.RemoveAccent())));
|
||||||
|
|
||||||
if (ReversedTitleRegex.IsMatch(title))
|
|
||||||
{
|
|
||||||
var titleWithoutExtension = RemoveFileExtension(title).ToCharArray();
|
|
||||||
Array.Reverse(titleWithoutExtension);
|
|
||||||
|
|
||||||
title = new string (titleWithoutExtension) + title.Substring(titleWithoutExtension.Length);
|
|
||||||
|
|
||||||
Logger.Debug("Reversed name detected. Converted to '{0}'", title);
|
|
||||||
}
|
|
||||||
|
|
||||||
var releaseTitle = RemoveFileExtension(title);
|
var releaseTitle = RemoveFileExtension(title);
|
||||||
|
|
||||||
var simpleTitle = SimpleTitleRegex.Replace(releaseTitle, string.Empty);
|
var simpleTitle = SimpleTitleRegex.Replace(releaseTitle, string.Empty);
|
||||||
|
@ -446,17 +423,6 @@ namespace NzbDrone.Core.Parser
|
||||||
|
|
||||||
Logger.Debug("Parsing string '{0}'", title);
|
Logger.Debug("Parsing string '{0}'", title);
|
||||||
|
|
||||||
|
|
||||||
if (ReversedTitleRegex.IsMatch(title))
|
|
||||||
{
|
|
||||||
var titleWithoutExtension = RemoveFileExtension(title).ToCharArray();
|
|
||||||
Array.Reverse(titleWithoutExtension);
|
|
||||||
|
|
||||||
title = new string(titleWithoutExtension) + title.Substring(titleWithoutExtension.Length);
|
|
||||||
|
|
||||||
Logger.Debug("Reversed name detected. Converted to '{0}'", title);
|
|
||||||
}
|
|
||||||
|
|
||||||
var releaseTitle = RemoveFileExtension(title);
|
var releaseTitle = RemoveFileExtension(title);
|
||||||
|
|
||||||
var simpleTitle = SimpleTitleRegex.Replace(releaseTitle, string.Empty);
|
var simpleTitle = SimpleTitleRegex.Replace(releaseTitle, string.Empty);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue