mirror of
https://github.com/Readarr/Readarr.git
synced 2026-01-30 16:53:05 -05:00
fixed RootFolderChecks
This commit is contained in:
@@ -29,8 +29,8 @@ public RootFolderCheck(IAuthorService authorService, IImportListFactory importLi
|
||||
|
||||
public override HealthCheck Check()
|
||||
{
|
||||
var rootFolders = _authorService.GetAllAuthors()
|
||||
.Select(s => _rootFolderService.GetBestRootFolderPath(s.Path))
|
||||
var rootFolders = _authorService.AllAuthorPaths()
|
||||
.Select(s => _rootFolderService.GetBestRootFolderPath(s.Value))
|
||||
.Distinct();
|
||||
|
||||
var missingRootFolders = rootFolders.Where(s => !_diskProvider.FolderExists(s))
|
||||
|
||||
Reference in New Issue
Block a user