core: refactor http webclient part 16 #8529

Rename RequestWithCookiesAsync method
This commit is contained in:
ngosang
2020-09-21 18:39:47 +02:00
parent 5ad1c9c87c
commit 621a47338d
58 changed files with 123 additions and 121 deletions

View File

@@ -86,7 +86,7 @@ namespace Jackett.Common.Indexers
for (var page = 0; page < maxPages; page++)
{
var searchUrl = string.Format(SearchUrl, page * MaxItemsPerPage, searchString);
var result = await WebRequestWithCookiesAsync(searchUrl, headers: _apiHeaders);
var result = await RequestWithCookiesAsync(searchUrl, headers: _apiHeaders);
try
{