mirror of
https://github.com/Radarr/Radarr
synced 2024-12-28 02:40:01 +00:00
Fixed: Guard agains null reference exception with newznab capabilities.
This commit is contained in:
parent
668ef336fb
commit
605b8f9645
1 changed files with 13 additions and 1 deletions
|
@ -84,7 +84,19 @@ private NewznabCapabilities ParseCapabilities(HttpResponse response)
|
|||
{
|
||||
var capabilities = new NewznabCapabilities();
|
||||
|
||||
var xmlRoot = XDocument.Parse(response.Content).Element("caps");
|
||||
var xDoc = XDocument.Parse(response.Content);
|
||||
|
||||
if (xDoc == null)
|
||||
{
|
||||
throw new XmlException("Invalid XML");
|
||||
}
|
||||
|
||||
var xmlRoot = xDoc.Element("caps");
|
||||
|
||||
if (xmlRoot == null)
|
||||
{
|
||||
throw new XmlException("Unexpected XML");
|
||||
}
|
||||
|
||||
var xmlLimits = xmlRoot.Element("limits");
|
||||
if (xmlLimits != null)
|
||||
|
|
Loading…
Reference in a new issue