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

This reverts commit 0bdcfd1e7b.
This commit is contained in:
ngosang
2020-09-21 08:04:26 +02:00
parent 9c492c5dcb
commit 1271ecaa4c
90 changed files with 380 additions and 380 deletions

View File

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