Fixed: Prevent moving to recycling bin causing a failed import

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
Qstick 2019-08-25 01:01:11 -04:00
commit 89d912bb2b

View file

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