mirror of
https://github.com/Jackett/Jackett
synced 2025-03-09 13:52:03 +00:00
wolfmax4k: typo fix, not a functional change
This commit is contained in:
parent
a338268efb
commit
f2630009ac
1 changed files with 2 additions and 2 deletions
|
@ -118,7 +118,7 @@ namespace Jackett.Common.Indexers
|
|||
|
||||
for (var i = 1; i <= maxPages; i++)
|
||||
{
|
||||
var result = await DoSeachAsync(query, searchToken, i);
|
||||
var result = await DoSearchAsync(query, searchToken, i);
|
||||
try
|
||||
{
|
||||
// Parse results
|
||||
|
@ -182,7 +182,7 @@ namespace Jackett.Common.Indexers
|
|||
return myDoc.QuerySelector("input[name='token']")?.GetAttribute("value");
|
||||
}
|
||||
|
||||
private async Task<WebResult> DoSeachAsync(TorznabQuery query, string searchToken, int page = 1)
|
||||
private async Task<WebResult> DoSearchAsync(TorznabQuery query, string searchToken, int page = 1)
|
||||
{
|
||||
var body = new Dictionary<string, string>
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue