Fixed: Prevent moving to recycling bin causing a failed import

This commit is contained in:
Mark McDowall 2019-08-13 17:31:05 -07:00
parent 81723f7fa9
commit eca016fe61
1 changed files with 3 additions and 0 deletions

View File

@ -193,6 +193,9 @@ namespace NzbDrone.Core.MediaFiles
catch (IOException)
{
}
catch (UnauthorizedAccessException)
{
}
}
public void Execute(CleanUpRecycleBinCommand message)