mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-02-04 22:11:43 +01:00
fix(SpeedApp): correct status code check
This commit is contained in:
parent
94d7f768a1
commit
f72269f91b
1 changed files with 1 additions and 1 deletions
|
|
@ -94,7 +94,7 @@ protected override async Task DoLogin()
|
|||
|
||||
var statusCode = (int)response.StatusCode;
|
||||
|
||||
if (statusCode is < 200 or > 400)
|
||||
if (statusCode is < 200 or > 299)
|
||||
{
|
||||
throw new HttpException(response);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue