mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-01-29 11:23:02 +02:00
Fixed: Deletion of empty episode sub folders when an episode file is deleted
This commit is contained in:
parent
3cbb489ac6
commit
dd314e1741
@ -482,7 +482,7 @@ namespace NzbDrone.Common.Disk
|
||||
|
||||
public void RemoveEmptySubfolders(string path)
|
||||
{
|
||||
var subfolders = GetDirectories(path);
|
||||
var subfolders = Directory.GetDirectories(path, "*", SearchOption.AllDirectories);
|
||||
var files = GetFiles(path, SearchOption.AllDirectories);
|
||||
|
||||
foreach (var subfolder in subfolders)
|
||||
|
Loading…
x
Reference in New Issue
Block a user