Added lost+found to SpecialFolders list

pull/4/head
Mark McDowall 11 years ago
parent 9fcd422f29
commit e045b6fc8f

@ -63,6 +63,7 @@ namespace NzbDrone.Core.Test.RootFolderTests
Mocker.GetMock<IBasicRepository<RootFolder>>().Verify(c => c.Delete(1), Times.Once());
}
[Test]
public void None_existing_folder_returns_empty_list()
{
WithNoneExistingFolder();

@ -30,7 +30,7 @@ namespace NzbDrone.Core.RootFolders
private readonly ISeriesRepository _seriesRepository;
private readonly IConfigService _configService;
private static readonly HashSet<string> SpecialFolders = new HashSet<string> { "$recycle.bin", "system volume information", "recycler" };
private static readonly HashSet<string> SpecialFolders = new HashSet<string> { "$recycle.bin", "system volume information", "recycler", "lost+found" };
public RootFolderService(IBasicRepository<RootFolder> rootFolderRepository,

Loading…
Cancel
Save