mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-25 06:10:48 +02:00
Fixed: (BB) Detect when re-auth needed
This commit is contained in:
parent
8b8b5ba1c8
commit
5dfe530cf3
1 changed files with 5 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue