mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 17:57:43 +00:00
Handle failed downloading on NZB so it will not get added to the History if it fails.
This commit is contained in:
parent
3a6cf56db1
commit
4e9f8bd2d0
1 changed files with 5 additions and 1 deletions
|
@ -160,7 +160,11 @@ namespace NzbDrone.Core.Providers.Indexer
|
||||||
var folder = !String.IsNullOrEmpty(blackholeDir) ? blackholeDir : Path.Combine(CentralDispatch.AppPath, "App_Data");
|
var folder = !String.IsNullOrEmpty(blackholeDir) ? blackholeDir : Path.Combine(CentralDispatch.AppPath, "App_Data");
|
||||||
var fileName = Path.Combine(folder, sabTitle + ".nzb");
|
var fileName = Path.Combine(folder, sabTitle + ".nzb");
|
||||||
_logger.Info("Downloading NZB: {0}", sabTitle);
|
_logger.Info("Downloading NZB: {0}", sabTitle);
|
||||||
_httpProvider.DownloadFile(NzbDownloadUrl(feedItem), fileName);
|
if (!_httpProvider.DownloadFile(NzbDownloadUrl(feedItem), fileName))
|
||||||
|
{
|
||||||
|
_logger.Info("Failed to download NZB");
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//else send to SAB
|
//else send to SAB
|
||||||
|
|
Loading…
Reference in a new issue