core: refactor http webclient part 1 #8529 (#7652)

Rename WebClientStringResult.Content to WebClientStringResult.ContentString
This commit is contained in:
Cory
2020-06-09 19:36:57 +02:00
committed by ngosang
parent df02034197
commit 0bdcfd1e7b
90 changed files with 380 additions and 380 deletions

View File

@@ -65,7 +65,7 @@ namespace Jackett.Common.Indexers
try
{
xmlDoc.LoadXml(result.Content);
xmlDoc.LoadXml(result.ContentString);
foreach (XmlNode node in xmlDoc.GetElementsByTagName("item"))
{
//TODO revisit for refactoring
@@ -105,7 +105,7 @@ namespace Jackett.Common.Indexers
}
catch (Exception ex)
{
OnParseError(result.Content, ex);
OnParseError(result.ContentString, ex);
}
return releases;