fix(SpeedApp): correct status code check

pull/246/head
Yukine 3 years ago committed by Qstick
parent 94d7f768a1
commit f72269f91b

@ -94,7 +94,7 @@ namespace NzbDrone.Core.Indexers.Definitions
var statusCode = (int)response.StatusCode;
if (statusCode is < 200 or > 400)
if (statusCode is < 200 or > 299)
{
throw new HttpException(response);
}

Loading…
Cancel
Save