Added RSS support for torrents

This commit is contained in:
Keivan Beigi
2013-09-13 16:17:58 -07:00
parent 89d603d71c
commit 82b06bab7a
59 changed files with 577 additions and 268 deletions
@@ -9,7 +9,7 @@ namespace NzbDrone.Core.Indexers
{
public interface IFetchAndParseRss
{
List<ReportInfo> Fetch();
List<ReleaseInfo> Fetch();
}
public class FetchAndParseRssService : IFetchAndParseRss
@@ -25,9 +25,9 @@ namespace NzbDrone.Core.Indexers
_logger = logger;
}
public List<ReportInfo> Fetch()
public List<ReleaseInfo> Fetch()
{
var result = new List<ReportInfo>();
var result = new List<ReleaseInfo>();
var indexers = _indexerService.GetAvailableIndexers().ToList();