Fixed typo in nn caps and apikey error message.

This commit is contained in:
Taloth Saldono
2015-10-11 02:18:51 +02:00
parent 25aa3b60b0
commit b6ddc8756b
2 changed files with 2 additions and 2 deletions
@@ -112,7 +112,7 @@ namespace NzbDrone.Core.Indexers.Newznab
{
Id = int.Parse(xmlSubcat.Attribute("id").Value),
Name = xmlSubcat.Attribute("name").Value,
Description = xmlSubcat.Attribute("description") != null ? xmlCategory.Attribute("description").Value : string.Empty
Description = xmlSubcat.Attribute("description") != null ? xmlSubcat.Attribute("description").Value : string.Empty
});
}