first check if directory exists before check if exist some file in it :)

This commit is contained in:
Alien21 2022-06-13 18:53:02 +02:00
parent 3736be6601
commit e5079fc9cf
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ namespace NzbDrone.Core.RootFolders
var setToRemove = SpecialFolders;
results.RemoveAll(x => setToRemove.Contains(new DirectoryInfo(x.Path.ToLowerInvariant()).Name));
results.RemoveAll(x => Directory.GetFiles(x.Path, IgnoreFolderFile).Length > 0);
results.RemoveAll(x => Directory.Exists(x.Path) && Directory.GetFiles(x.Path, IgnoreFolderFile).Length > 0);
_logger.Debug("{0} unmapped folders detected.", results.Count);
return results.OrderBy(u => u.Name, StringComparer.InvariantCultureIgnoreCase).ToList();