mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-09 04:22:30 +01:00
don't report DirectoryNotFoundException in FreeSpaceSpecification
This commit is contained in:
parent
91d64f0b6a
commit
b43c4e04f8
@ -44,6 +44,10 @@ public bool IsSatisfiedBy(LocalEpisode localEpisode)
|
||||
return false;
|
||||
}
|
||||
}
|
||||
catch (DirectoryNotFoundException ex)
|
||||
{
|
||||
_logger.Error("Unable to check free disk space while importing. " + ex.Message);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
_logger.ErrorException("Unable to check free disk space while importing: " + localEpisode.Path, ex);
|
||||
|
Loading…
Reference in New Issue
Block a user