try to import file anyway if free space check fails.

This commit is contained in:
kay.one
2013-09-10 08:31:58 -07:00
parent c01194e345
commit 7ae605e474
2 changed files with 28 additions and 4 deletions

View File

@@ -31,14 +31,13 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport.Specifications
_logger.Warn("Not enough free space to import: {0}", localEpisode);
return false;
}
return true;
}
catch (Exception ex)
{
_logger.ErrorException("Unable to check free disk space while importing: " + localEpisode.Path, ex);
throw;
}
return true;
}
}
}