Fixed: Parsing RSS with null values (#6220)

pull/6225/head
Robin Dadswell 3 years ago committed by GitHub
parent ce6f52552a
commit c66f7abea5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -261,11 +261,11 @@ namespace NzbDrone.Core.Indexers
try
{
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