mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-24 22:35:39 -04:00
Fixed: don't try to delete series folder if it doesn't exist
This commit is contained in:
@@ -170,7 +170,10 @@ namespace NzbDrone.Core.MediaFiles
|
||||
{
|
||||
if (message.DeleteFiles)
|
||||
{
|
||||
DeleteFolder(message.Series.Path);
|
||||
if (_diskProvider.FolderExists(message.Series.Path))
|
||||
{
|
||||
DeleteFolder(message.Series.Path);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user