mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-19 21:46:50 -04:00
Fixed: Lists are fetched much more efficiently. (Up to 40x loading time improvement with large lists!)
This commit is contained in:
@@ -63,7 +63,7 @@ namespace NzbDrone.Core.NetImport
|
||||
{
|
||||
var movies = MovieListSearch(listId, onlyEnableAuto);
|
||||
|
||||
return movies.Where(x => !_movieService.MovieExists(x)).ToList();
|
||||
return _movieService.FilterExistingMovies(movies);
|
||||
}
|
||||
|
||||
public List<Movie> MovieListSearch(int listId, bool onlyEnableAuto = false)
|
||||
|
||||
Reference in New Issue
Block a user