mirror of
https://github.com/Radarr/Radarr
synced 2025-12-25 09:42:24 +01:00
Fix: Net import optimization
This commit is contained in:
parent
a06b044342
commit
15b63778e5
1 changed files with 6 additions and 0 deletions
|
|
@ -125,6 +125,12 @@ public void Execute(NetImportSyncCommand message)
|
|||
CleanLibrary(listedMovies);
|
||||
}
|
||||
|
||||
listedMovies = listedMovies.Where(x => !_movieService.MovieExists(x)).ToList();
|
||||
if (listedMovies.Any())
|
||||
{
|
||||
_logger.Info($"Found {listedMovies.Count()} movies on your auto enabled lists not in your library");
|
||||
}
|
||||
|
||||
var importExclusions = new List<string>();
|
||||
var moviesToAdd = new List<Movie>();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue