1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-17 21:26:22 -04:00

Fixed: RSS Sync failing due to one broken indexer

This commit is contained in:
Mark McDowall
2016-03-23 19:04:35 -07:00
parent 99aa25bf83
commit 5a877cbd62

View File

@@ -4,7 +4,6 @@ using System.Threading.Tasks;
using NLog;
using NzbDrone.Core.Parser.Model;
using NzbDrone.Common.TPL;
using System.Collections;
using System;
namespace NzbDrone.Core.Indexers
{
@@ -47,11 +46,18 @@ namespace NzbDrone.Core.Indexers
var task = taskFactory.StartNew(() =>
{
var indexerFeed = indexerLocal.FetchRecent();
lock (result)
try
{
result.AddRange(indexerFeed);
var indexerReports = indexerLocal.FetchRecent();
lock (result)
{
result.AddRange(indexerReports);
}
}
catch (Exception e)
{
_logger.Error(e, "Error during RSS Sync");
}
}).LogExceptions();