mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
fixed: increased tvdb search limit to 10
This commit is contained in:
parent
c368335183
commit
46bf80dcd1
4 changed files with 3 additions and 323 deletions
|
@ -100,7 +100,8 @@ namespace NzbDrone.Common.Http
|
|||
|
||||
if (!RuntimeInfoBase.IsProduction &&
|
||||
(response.StatusCode == HttpStatusCode.Moved ||
|
||||
response.StatusCode == HttpStatusCode.MovedPermanently))
|
||||
response.StatusCode == HttpStatusCode.MovedPermanently ||
|
||||
response.StatusCode == HttpStatusCode.Found))
|
||||
{
|
||||
throw new Exception("Server requested a redirect to [" + response.Headers["Location"] + "]. Update the request URL to avoid this redirect.");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue