mirror of
https://github.com/Sonarr/Sonarr
synced 2025-02-25 15:33:11 +00:00
don't report DirectoryNotFoundException in FreeSpaceSpecification
This commit is contained in:
parent
91d64f0b6a
commit
b43c4e04f8
1 changed files with 4 additions and 0 deletions
|
@ -44,6 +44,10 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport.Specifications
|
|||
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 a new issue