default to POST login

This commit is contained in:
kaso17 2016-10-30 15:15:48 +01:00 committed by kaso17
parent 96017dd3bc
commit f7d96c108a
1 changed files with 1 additions and 1 deletions

View File

@ -279,7 +279,7 @@ namespace Jackett.Indexers
if (Login == null)
return false;
if (Login.Method == "post")
if (Login.Method == null || Login.Method == "post")
{
var pairs = new Dictionary<string, string>();
foreach (var Input in Definition.Login.Inputs)