Remove special folder regardless of location

This commit is contained in:
Mark McDowall 2014-03-26 16:49:03 -07:00
parent 149a1c2b75
commit 47624ef704
1 changed files with 2 additions and 5 deletions

View File

@ -132,11 +132,8 @@ namespace NzbDrone.Core.RootFolders
results.Add(new UnmappedFolder { Name = di.Name, Path = di.FullName });
}
if (Path.GetPathRoot(path).Equals(path, StringComparison.InvariantCultureIgnoreCase))
{
var setToRemove = SpecialFolders;
results.RemoveAll(x => setToRemove.Contains(new DirectoryInfo(x.Path.ToLowerInvariant()).Name));
}
var setToRemove = SpecialFolders;
results.RemoveAll(x => setToRemove.Contains(new DirectoryInfo(x.Path.ToLowerInvariant()).Name));
Logger.Debug("{0} unmapped folders detected.", results.Count);
return results;