remove unnecessary check of movie.library

This commit is contained in:
Maximilian Dorninger
2025-12-18 22:06:16 +01:00
committed by GitHub
parent 6ed3c91bde
commit a40077a5b1

View File

@@ -132,7 +132,7 @@ class MovieService:
log.debug(f"Deleting ID: {movie.id} - Name: {movie.name}")
if delete_files_on_disk and movie.library:
if delete_files_on_disk:
# Get the movie's directory path
movie_dir = self.get_movie_root_path(movie=movie)