mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-06 07:47:17 +01:00
Follow 303 and 307 Redirects when AllowRedirects is True
This commit is contained in:
parent
6c4da0989d
commit
e6c58a6b31
1 changed files with 2 additions and 0 deletions
|
|
@ -52,6 +52,8 @@ public string Content
|
|||
|
||||
public bool HasHttpRedirect => StatusCode == HttpStatusCode.Moved ||
|
||||
StatusCode == HttpStatusCode.MovedPermanently ||
|
||||
StatusCode == HttpStatusCode.RedirectMethod ||
|
||||
StatusCode == HttpStatusCode.TemporaryRedirect ||
|
||||
StatusCode == HttpStatusCode.Found;
|
||||
|
||||
public string[] GetCookieHeaders()
|
||||
|
|
|
|||
Loading…
Reference in a new issue