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

View File

@@ -80,7 +80,7 @@ namespace NzbDrone.Core.Indexers.Definitions
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()