1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

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

View File

@ -446,6 +446,14 @@ public bool MovieExists(Movie movie)
return true;
}
}
else
{
result = _movieRepository.FindByTitle(movie.Title.CleanSeriesTitle());
if (result != null)
{
return true;
}
}
return false;
}