Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/b43c4e04f839c2258b511fd4121d47d312849a69 You should set ROOT_URL correctly, otherwise the web may not work correctly.

don't report DirectoryNotFoundException in FreeSpaceSpecification

pull/43/head
kayone 11 years ago
parent 91d64f0b6a
commit b43c4e04f8

@ -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…
Cancel
Save