Fixed: Parsing RSS with null values

Fixes #2187
Fixes #1730

(cherry picked from commit 8175f19442273e13517b2d507e7a4c33587f1b15)
pull/2306/head
cicomalieran 3 years ago committed by Qstick
parent 0b60ca68fc
commit 6842c561ea

@ -266,9 +266,9 @@ namespace NzbDrone.Core.Indexers
{
return new RssEnclosure
{
Url = v.Attribute("url").Value,
Type = v.Attribute("type").Value,
Length = (long)v.Attribute("length")
Url = v.Attribute("url")?.Value,
Type = v.Attribute("type")?.Value,
Length = v.Attribute("length")?.Value?.ParseInt64() ?? 0
};
}
catch (Exception e)

Loading…
Cancel
Save