mirror of
https://github.com/Jackett/Jackett
synced 2025-02-25 07:32:38 +00:00
default to POST login
This commit is contained in:
parent
96017dd3bc
commit
f7d96c108a
1 changed files with 1 additions and 1 deletions
|
@ -279,7 +279,7 @@ namespace Jackett.Indexers
|
||||||
if (Login == null)
|
if (Login == null)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (Login.Method == "post")
|
if (Login.Method == null || Login.Method == "post")
|
||||||
{
|
{
|
||||||
var pairs = new Dictionary<string, string>();
|
var pairs = new Dictionary<string, string>();
|
||||||
foreach (var Input in Definition.Login.Inputs)
|
foreach (var Input in Definition.Login.Inputs)
|
||||||
|
|
Loading…
Reference in a new issue