Handle redirects for 308 redirects
This commit is contained in:
parent
67cf95f6c2
commit
6eed7c8fed
|
@ -55,7 +55,8 @@ namespace NzbDrone.Common.Http
|
|||
StatusCode == HttpStatusCode.Found ||
|
||||
StatusCode == HttpStatusCode.TemporaryRedirect ||
|
||||
StatusCode == HttpStatusCode.RedirectMethod ||
|
||||
StatusCode == HttpStatusCode.SeeOther;
|
||||
StatusCode == HttpStatusCode.SeeOther ||
|
||||
StatusCode == HttpStatusCode.PermanentRedirect;
|
||||
|
||||
public string[] GetCookieHeaders()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue