mirror of
https://github.com/Readarr/Readarr
synced 2026-01-07 16:13:05 +01:00
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:
parent
699f19b352
commit
89d912bb2b
1 changed files with 3 additions and 0 deletions
|
|
@ -202,6 +202,9 @@ private void SetLastWriteTime(string file, DateTime dateTime)
|
|||
catch (IOException)
|
||||
{
|
||||
}
|
||||
catch (UnauthorizedAccessException)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
public void Execute(CleanUpRecycleBinCommand message)
|
||||
|
|
|
|||
Loading…
Reference in a new issue