1
0
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:
Leonardo Galli
2017-07-08 16:13:28 +02:00
parent fb4f510909
commit 964c18b236
3 changed files with 20 additions and 2 deletions
@@ -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)