mirror of
https://github.com/Readarr/Readarr
synced 2026-05-09 05:21:41 +02:00
Handle redirects for 308 redirects
(cherry picked from commit 6eed7c8fed096fa1762448bc57876440f542be98)
This commit is contained in:
parent
5dac84f9d8
commit
b98ae37abf
1 changed files with 2 additions and 1 deletions
|
|
@ -55,7 +55,8 @@ public string Content
|
||||||
StatusCode == HttpStatusCode.Found ||
|
StatusCode == HttpStatusCode.Found ||
|
||||||
StatusCode == HttpStatusCode.TemporaryRedirect ||
|
StatusCode == HttpStatusCode.TemporaryRedirect ||
|
||||||
StatusCode == HttpStatusCode.RedirectMethod ||
|
StatusCode == HttpStatusCode.RedirectMethod ||
|
||||||
StatusCode == HttpStatusCode.SeeOther;
|
StatusCode == HttpStatusCode.SeeOther ||
|
||||||
|
StatusCode == HttpStatusCode.PermanentRedirect;
|
||||||
|
|
||||||
public string[] GetCookieHeaders()
|
public string[] GetCookieHeaders()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue