Fixed: Possible nullRef when setting IndexerFlags in TorznabParser

This commit is contained in:
Qstick 2020-08-16 01:14:47 -04:00
parent ed76709b7f
commit 0ef9d28a73
1 changed files with 5 additions and 4 deletions

View File

@ -51,15 +51,16 @@ namespace NzbDrone.Core.Indexers.Torznab
protected override ReleaseInfo ProcessItem(XElement item, ReleaseInfo releaseInfo)
{
var torrentInfo = base.ProcessItem(item, releaseInfo) as TorrentInfo;
if (GetImdbId(item) != null)
if (torrentInfo != null)
{
if (torrentInfo != null)
if (GetImdbId(item) != null)
{
torrentInfo.ImdbId = int.Parse(GetImdbId(item).Substring(2));
}
}
torrentInfo.IndexerFlags = GetFlags(item);
torrentInfo.IndexerFlags = GetFlags(item);
}
return torrentInfo;
}