Fixed: Movies parsed from lists with no year and only title getting added mutliple times.

Leonardo Galli 7 years ago
parent 5ac0f28fff
commit 172cf4d06e

@ -446,6 +446,14 @@ namespace NzbDrone.Core.Tv
return true;
}
}
else
{
result = _movieRepository.FindByTitle(movie.Title.CleanSeriesTitle());
if (result != null)
{
return true;
}
}
return false;
}

Loading…
Cancel
Save