New: (Newznab) Parse PosterUrl when available

This commit is contained in:
Qstick
2021-08-15 00:42:51 -04:00
parent 252b9a1b6b
commit 31886e8d35
2 changed files with 12 additions and 0 deletions
@@ -62,6 +62,7 @@ namespace NzbDrone.Core.Indexers.Torznab
}
torrentInfo.IndexerFlags = GetFlags(item);
torrentInfo.PosterUrl = GetPosterUrl(item);
}
return torrentInfo;
@@ -133,6 +134,11 @@ namespace NzbDrone.Core.Indexers.Torznab
return !imdbIdString.IsNullOrWhiteSpace() ? imdbIdString.Substring(2) : null;
}
protected virtual string GetPosterUrl(XElement item)
{
return ParseUrl(TryGetTorznabAttribute(item, "coverurl"));
}
protected override string GetInfoHash(XElement item)
{
return TryGetTorznabAttribute(item, "infohash");