Exceptions when checking SAB's queue are now caught.

This commit is contained in:
Mark McDowall 2012-04-17 17:19:03 -07:00
parent c0d1d2c502
commit aec59de6b6
1 changed files with 24 additions and 15 deletions

View File

@ -45,6 +45,8 @@ namespace NzbDrone.Core.Providers.DownloadClients
}
public virtual bool IsInQueue(EpisodeParseResult newParseResult)
{
try
{
var queue = GetQueue().Where(c => c.ParseResult != null);
@ -68,6 +70,13 @@ namespace NzbDrone.Core.Providers.DownloadClients
return matchingSeason.Any(q => q.ParseResult.EpisodeNumbers != null && q.ParseResult.EpisodeNumbers.Any(e => newParseResult.EpisodeNumbers.Contains(e)));
}
catch (Exception ex)
{
logger.WarnException("Unable to connect to SABnzbd to check queue.", ex);
return false;
}
}
public virtual bool DownloadNzb(string url, string title)
{
string cat = _configProvider.SabTvCategory;