Fixed: (ImmortalSeed) Update relogin check

This commit is contained in:
Bogdan 2024-11-24 11:45:55 +02:00 committed by GitHub
parent 30c4bb24e8
commit b8b32f8708
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -80,7 +80,7 @@ protected override async Task DoLogin()
protected override bool CheckIfLoginNeeded(HttpResponse httpResponse)
{
return httpResponse.Content.Contains("You do not have permission to access this page.");
return !httpResponse.Content.Contains("logout.php");
}
private IndexerCapabilities SetCapabilities()