Fix net import sync - title won't exist until movie mapped

pull/4454/head
ta264 4 years ago committed by Qstick
parent c8a2af867e
commit 4a5012f98e

@ -351,6 +351,8 @@ namespace NzbDrone.Core.Movies
}
}
if (movie.Title.IsNotNullOrWhiteSpace())
{
if (movie.Year > 1850)
{
result = FindByTitle(movie.Title.CleanSeriesTitle(), movie.Year);
@ -367,6 +369,7 @@ namespace NzbDrone.Core.Movies
return true;
}
}
}
return false;
}

Loading…
Cancel
Save