Handle redirects for 308 redirects

This commit is contained in:
Mark McDowall 2022-09-17 17:41:57 -07:00
parent 67cf95f6c2
commit 6eed7c8fed
1 changed files with 2 additions and 1 deletions

View File

@ -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()
{