mirror of https://github.com/Jackett/Jackett
Cardigann: fix re-login caching issue for login method=form indexers
This commit is contained in:
parent
addf98e9a3
commit
059701fbf6
|
@ -441,6 +441,10 @@ namespace Jackett.Indexers
|
|||
pairs["submitme"] = "X";
|
||||
}
|
||||
|
||||
// clear landingResults/Document, otherwise we might use an old version for a new relogin (if GetConfigurationForSetup() wasn't called before)
|
||||
landingResult = null;
|
||||
landingResultDocument = null;
|
||||
|
||||
WebClientStringResult loginResult = null;
|
||||
var enctype = form.GetAttribute("enctype");
|
||||
if (enctype == "multipart/form-data")
|
||||
|
|
Loading…
Reference in New Issue