Added NzbInfoUrl to indexers.

This commit is contained in:
Mark McDowall 2012-05-02 12:02:39 -07:00
commit b314ff5e82
13 changed files with 113 additions and 4 deletions

View file

@ -45,6 +45,10 @@ namespace NzbDrone.Core.Providers.Indexer
return item.Links[0].Uri.ToString();
}
protected override string NzbInfoUrl(SyndicationItem item)
{
return item.Links[0].Uri.ToString();
}
protected override IList<string> GetEpisodeSearchUrls(string seriesTitle, int seasonNumber, int episodeNumber)
{