mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-05 15:22:54 +01:00
Update LoginNeeded logic for AnimeTorrents
This commit is contained in:
parent
92896dc777
commit
c569792df2
1 changed files with 1 additions and 1 deletions
|
|
@ -74,7 +74,7 @@ protected override void DoLogin()
|
|||
|
||||
protected override bool CheckIfLoginNeeded(HttpResponse httpResponse)
|
||||
{
|
||||
if (httpResponse.Content.Equals("Access Denied!"))
|
||||
if (httpResponse.Content.Contains("Access Denied!") || httpResponse.Content.Contains("login.php"))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue