simplify ImportListRootFolderCheck

This commit is contained in:
Bakerboy448 2023-05-09 10:30:17 -05:00
parent b69c6cb456
commit 6456b5fd45
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ namespace NzbDrone.Core.HealthCheck.Checks
continue; continue;
} }
if (rootFolderPath.IsNullOrWhiteSpace() || !_diskProvider.FolderExists(rootFolderPath)) if (!_diskProvider.FolderExists(rootFolderPath))
{ {
missingRootFolders.Add(rootFolderPath, new List<ImportListDefinition> { importList }); missingRootFolders.Add(rootFolderPath, new List<ImportListDefinition> { importList });
} }