1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-22 22:31:26 +00:00

Avoid using GetAllMovies in MediaFileDeletionService

This commit is contained in:
Qstick 2023-07-09 23:29:33 -05:00
parent 1c99ce8876
commit bbde1dc7a6

View file

@ -92,24 +92,24 @@ public void HandleAsync(MoviesDeletedEvent message)
{
if (message.DeleteFiles)
{
var allMovies = _movieService.GetAllMovies();
var allMovies = _movieService.AllMoviePaths();
foreach (var movie in message.Movies)
{
foreach (var s in allMovies)
{
if (s.Id == movie.Id)
if (s.Key == movie.Id)
{
continue;
}
if (movie.Path.IsParentPath(s.Path))
if (movie.Path.IsParentPath(s.Value))
{
_logger.Error("Movie path: '{0}' is a parent of another movie, not deleting files.", movie.Path);
return;
}
if (movie.Path.PathEquals(s.Path))
if (movie.Path.PathEquals(s.Value))
{
_logger.Error("Movie path: '{0}' is the same as another movie, not deleting files.", movie.Path);
return;