1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Fixed: Revert GetAllMovies call to AllMoviePaths

This commit is contained in:
Qstick 2020-05-01 21:16:17 -04:00
parent 41d7bf87c0
commit 5ddc63c673

View File

@ -26,8 +26,8 @@ public RootFolderCheck(IMovieService movieService, IDiskProvider diskProvider, I
public override HealthCheck Check()
{
var rootFolders = _movieService.GetAllMovies()
.Select(s => _rootFolderService.GetBestRootFolderPath(s.Path))
var rootFolders = _movieService.AllMoviePaths()
.Select(s => _rootFolderService.GetBestRootFolderPath(s))
.Distinct();
var missingRootFolders = rootFolders.Where(s => !_diskProvider.FolderExists(s))