mirror of
https://github.com/Radarr/Radarr
synced 2025-12-10 10:22:41 +01:00
Added lost+found to SpecialFolders list
This commit is contained in:
parent
9fcd422f29
commit
e045b6fc8f
2 changed files with 2 additions and 1 deletions
|
|
@ -63,6 +63,7 @@ public void should_be_able_to_remove_root_dir()
|
|||
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 @@ public class RootFolderService : IRootFolderService
|
|||
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…
Reference in a new issue