New: Newznab will show indexer name and logo when possible.

This commit is contained in:
Mark McDowall
2012-05-08 14:29:24 -07:00
parent ba3b034a3c
commit f26ef627df
6 changed files with 14 additions and 3 deletions
@@ -199,7 +199,7 @@ namespace NzbDrone.Core.Providers.Indexer
{
parsedEpisode.NzbUrl = NzbDownloadUrl(item);
parsedEpisode.NzbInfoUrl = NzbInfoUrl(item);
parsedEpisode.Indexer = Name;
parsedEpisode.Indexer = String.IsNullOrWhiteSpace(parsedEpisode.Indexer) ? Name : parsedEpisode.Indexer;
result.Add(parsedEpisode);
}
}