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

This commit is contained in:
Leonardo Galli 2017-12-12 23:26:16 +01:00
parent 5ac0f28fff
commit 172cf4d06e
1 changed files with 8 additions and 0 deletions

View File

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