Fixed: (BB) Detect when re-auth needed

pull/543/head
Qstick 3 years ago
parent 8b8b5ba1c8
commit 5dfe530cf3

@ -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;
}

Loading…
Cancel
Save