1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-06-30 09:39:52 +02:00

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

View File

@ -162,7 +162,7 @@ private List<UnmappedFolder> GetUnmappedFolders(string path, Dictionary<int, str
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();