mirror of
https://github.com/lidarr/Lidarr
synced 2025-03-09 13:25:40 +00:00
Handle 303 Redirects
This commit is contained in:
parent
07ffb4a9ed
commit
e85ed1e2b8
1 changed files with 2 additions and 0 deletions
|
@ -53,6 +53,8 @@ namespace NzbDrone.Common.Http
|
|||
public bool HasHttpRedirect => StatusCode == HttpStatusCode.Moved ||
|
||||
StatusCode == HttpStatusCode.MovedPermanently ||
|
||||
StatusCode == HttpStatusCode.TemporaryRedirect ||
|
||||
StatusCode == HttpStatusCode.SeeOther ||
|
||||
StatusCode == HttpStatusCode.RedirectMethod ||
|
||||
StatusCode == HttpStatusCode.Found;
|
||||
|
||||
public string[] GetCookieHeaders()
|
||||
|
|
Loading…
Add table
Reference in a new issue