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 @@ protected override async Task DoLogin()
protected override bool CheckIfLoginNeeded(HttpResponse httpResponse)
{
if (!httpResponse.Content.Contains("logout.php"))
{
return true;
}
return false;
}