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

@@ -163,7 +163,7 @@ namespace Jackett.Common.Indexers
throw new WebException($"Anidex search returned unexpected result. Expected 200 OK but got {response.Status}.", WebExceptionStatus.ProtocolError);
// Search seems to have been a success so parse it
return ParseResult(response.Content);
return ParseResult(response.ContentString);
}
private IEnumerable<ReleaseInfo> ParseResult(string response)