1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04:00

New: Support AKA release titles

Co-Authored-By: aeonnoea <46950349+0aeonnoea0@users.noreply.github.com>
This commit is contained in:
Qstick
2020-10-15 23:08:08 -04:00
parent f9dab9d780
commit 9d6614b14a
27 changed files with 258 additions and 89 deletions
@@ -322,10 +322,10 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
var yearTerm = "";
if (parserResult != null && parserResult.MovieTitle != title)
if (parserResult != null && parserResult.PrimaryMovieTitle != title)
{
//Parser found something interesting!
parserTitle = parserResult.MovieTitle.ToLower().Replace(".", " "); //TODO Update so not every period gets replaced (e.g. R.I.P.D.)
parserTitle = parserResult.PrimaryMovieTitle.ToLower().Replace(".", " "); //TODO Update so not every period gets replaced (e.g. R.I.P.D.)
if (parserResult.Year > 1800)
{
yearTerm = parserResult.Year.ToString();