Display Error when RSS Feed doesn't return any items.

pull/6/head
markus101 13 years ago
parent 1de903e4da
commit ce79ab2827

@ -100,7 +100,16 @@ namespace NzbDrone.Core.Providers
var indexer = new FeedInfoModel(i.IndexerName, i.RssUrl);
foreach (RssItem item in _rss.GetFeed(indexer))
var feedItems = _rss.GetFeed(indexer);
if (feedItems.Count() == 0)
{
_rssSyncNotification.CurrentStatus = String.Format("Failed to download RSS Feed: {0}", //
i.IndexerName);
continue; //No need to process anything else
}
foreach (RssItem item in feedItems)
{
NzbInfoModel nzb = Parser.ParseNzbInfo(indexer, item);
QueueIfWanted(nzb, i);

Loading…
Cancel
Save