Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/8175f19442273e13517b2d507e7a4c33587f1b15?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Parsing RSS with null values

pull/4459/head
cicomalieran 4 years ago committed by GitHub
parent 55752a6c62
commit 8175f19442
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -259,9 +259,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