mirror of https://github.com/Radarr/Radarr
Fix: Net import optimization
This commit is contained in:
parent
a06b044342
commit
15b63778e5
|
@ -125,6 +125,12 @@ namespace NzbDrone.Core.NetImport
|
||||||
CleanLibrary(listedMovies);
|
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 importExclusions = new List<string>();
|
||||||
var moviesToAdd = new List<Movie>();
|
var moviesToAdd = new List<Movie>();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue