Fixed: (BB) Detect when re-auth needed

This commit is contained in:
Qstick
2021-10-10 14:06:30 -05:00
parent 8b8b5ba1c8
commit 5dfe530cf3

View File

@@ -103,6 +103,11 @@ namespace NzbDrone.Core.Indexers.Definitions
protected override bool CheckIfLoginNeeded(HttpResponse httpResponse)
{
if (!httpResponse.Content.Contains("logout.php"))
{
return true;
}
return false;
}